Fixed display issue in MessageCompose

This commit is contained in:
cketti 2012-03-26 07:29:10 +02:00
parent acffe973eb
commit 43cb78d2de
1 changed files with 3 additions and 1 deletions

View File

@ -217,10 +217,12 @@
</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
android:id="@+id/message_content"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="left|top"
android:hint="@string/message_compose_content_hint"