mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-17 22:55:12 -05:00
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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/revealLogout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Exit" />
|
|
|
|
<TextView
|
|
android:id="@+id/revealUserName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="User name"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="#FFFFFF" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/folderList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
</ListView>
|
|
|
|
</LinearLayout> |