Android: Try a more friendly layout for displaying messages on small screens

This commit is contained in:
Rom Walton 2013-02-19 10:51:55 -05:00 committed by Oliver Bock
parent 5fbf1ded99
commit 3a4bf72610
1 changed files with 22 additions and 17 deletions

View File

@ -21,27 +21,32 @@
android:id="@+id/msgsRow"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/msgs_project"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Project" />
<TextView
android:id="@+id/msgs_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Date" />
android:orientation="vertical" >
<TextView
android:id="@+id/msgs_message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Message" />
android:layout_margin="2dp" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/msgsRowHorizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/msgs_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp" />
<TextView android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/msgs_project"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp" />
</LinearLayout>
</LinearLayout>