mirror of
https://git.victorphan.net/basketballcantho/Teedy_custom.git
synced 2026-08-05 14:03:10 +07:00
61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:ignore="InconsistentLayout"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<fragment
|
|
android:id="@+id/main_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
class="com.sismics.docs.fragment.DocListFragment"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/left_drawer"
|
|
android:layout_width="240dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:background="#fff"
|
|
android:elevation="5dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#aaa"
|
|
android:padding="12dp"
|
|
android:orientation="vertical"
|
|
android:elevation="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/usernameTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#fff"
|
|
android:fontFamily="sans-serif"/>
|
|
|
|
<TextView
|
|
android:id="@+id/emailTextView"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#fff"
|
|
android:fontFamily="sans-serif-light"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:layout_weight="1"
|
|
android:id="@+id/tagListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="@android:color/transparent"
|
|
android:dividerHeight="0dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |