mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-19 07:25:05 -05:00
27 lines
819 B
XML
27 lines
819 B
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/LinearLayout1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="36dp"
|
||
|
android:background="#000000" >
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/folderRevealButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Reveal" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/conversationList"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" >
|
||
|
</ListView>
|
||
|
|
||
|
</LinearLayout>
|