mailiverse/android/Mailiverse/res/layout/activity_conversation.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>