mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-16 22:45:04 -05:00
Fixed display issue in MessageCompose
This commit is contained in:
parent
acffe973eb
commit
43cb78d2de
@ -217,10 +217,12 @@
|
|||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- We have to use "wrap_content" (not "0dip") for "layout_height", otherwise the
|
||||||
|
EditText won't properly grow in height while the user is typing the message -->
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/message_content"
|
android:id="@+id/message_content"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:gravity="left|top"
|
android:gravity="left|top"
|
||||||
android:hint="@string/message_compose_content_hint"
|
android:hint="@string/message_compose_content_hint"
|
||||||
|
Loading…
Reference in New Issue
Block a user