Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3d73844 authored by calderwoodra's avatar calderwoodra Committed by Eric Erfanian
Browse files

PostCallActivity edittext is not always visible on all screen sizes.

before: http://screen/DsVrM1vK89e
after: http://screen/RzGZvPTXRQb
Bug: 63093275
Test: manual
PiperOrigin-RevId: 161609906
Change-Id: If53681b9414dd79dba16371f42be437f1afa2729
parent b4b4b08f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -51,7 +51,6 @@
      android:background="@color/call_composer_divider"/>

  <RelativeLayout
      android:orientation="horizontal"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content">

+1 −2
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@
      android:name="com.android.dialer.postcall.PostCallActivity"
      android:exported="false"
      android:theme="@style/DialerThemeBase.NoActionBar"
      android:windowSoftInputMode="adjustResize"
      android:screenOrientation="portrait"/>
      android:windowSoftInputMode="adjustResize"/>
  </application>
</manifest>
+12 −11
Original line number Diff line number Diff line
@@ -14,20 +14,21 @@
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:background="@color/background_dialer_white"
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <FrameLayout
    android:id="@+id/message_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="@color/background_dialer_white"/>
  android:layout_height="match_parent"
  android:background="@color/background_dialer_white">

  <com.android.dialer.widget.DialerToolbar
      android:id="@+id/toolbar"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>
</RelativeLayout>
 No newline at end of file

  <FrameLayout
    android:id="@+id/message_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background_dialer_white"/>
</LinearLayout>
 No newline at end of file
+20 −12
Original line number Diff line number Diff line
@@ -14,28 +14,36 @@
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<LinearLayout
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:gravity="bottom"
  android:background="@color/background_dialer_white">

  <ScrollView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_above="@+id/divider">

    <LinearLayout
      android:id="@+id/message_container"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>
  </ScrollView>

  <View
    android:id="@+id/divider"
    android:layout_width="match_parent"
    android:layout_height="@dimen/message_divider_height"
    android:background="#12000000"/>
    android:background="#12000000"
    android:layout_above="@+id/edittext_container"/>

  <RelativeLayout
    android:id="@+id/edittext_container"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true">

    <EditText
      android:id="@+id/custom_message"
@@ -50,7 +58,7 @@
      android:textCursorDrawable="@drawable/searchedittext_custom_cursor"
      android:layout_toStartOf="@+id/count_and_send_container"
      android:inputType="textShortMessage|textCapSentences"
      android:imeOptions="actionSend"/>
      android:imeOptions="flagNoExtractUi|actionSend"/>

    <LinearLayout
      android:id="@+id/count_and_send_container"
@@ -80,4 +88,4 @@
        android:textColor="@color/dialer_edit_text_hint_color"/>
    </LinearLayout>
  </RelativeLayout>
</LinearLayout>
 No newline at end of file
</RelativeLayout>
 No newline at end of file