mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-15 05:35:07 -05:00
28 lines
851 B
XML
28 lines
851 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/mails"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="#000000" >
|
|
|
|
<Button
|
|
android:id="@+id/conversationBackButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Back" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/mailList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ConversationActivity" >
|
|
</ListView>
|
|
|
|
</LinearLayout> |