37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<android.support.v4.widget.DrawerLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:text="Welcome!"
|
|
android:id="@+id/textView2"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="52dp" />
|
|
</RelativeLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/navList"
|
|
android:layout_width="200dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="#ffeeee"/>
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
|
|
|
|
|
|
|