Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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" >
- <!-- Action-bar looking view -->
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/actionbar_dimen" <!-- its equal 56dp -->
- android:background="@color/blue" >
- <ImageView
- android:id="@+id/drawer_indicator"
- android:layout_width="@dimen/actionbar_dimen"
- android:layout_height="@dimen/actionbar_dimen"
- android:layout_gravity="right"
- android:background="@drawable/drawer_selector"
- android:scaleType="centerInside" />
- <TextView
- android:id="@+id/indicator_style"
- android:layout_width="wrap_content"
- android:layout_height="@dimen/actionbar_dimen"
- android:layout_gravity="center"
- android:background="@drawable/drawer_selector"
- android:gravity="center"
- android:paddingLeft="12dp"
- android:paddingRight="12dp"
- android:text="@string/tests"
- android:textColor="@android:color/white"
- android:textStyle="bold" />
- <ImageView
- android:layout_width="@dimen/actionbar_dimen"
- android:layout_height="@dimen/actionbar_dimen"
- android:layout_gravity="left"
- android:background="@android:color/white"
- android:src="@drawable/sos_s"
- android:scaleType="centerInside" />
- </FrameLayout>
- <!-- Content -->
- <android.support.v4.widget.DrawerLayout
- android:id="@+id/drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" >
- <FrameLayout
- android:id="@+id/view_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/light_gray"
- android:gravity="center" />
- <LinearLayout
- android:id="@+id/drawer_content"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:layout_gravity="end"
- android:background="@android:color/white"
- android:gravity="center"
- android:orientation="vertical" >
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="100dp"
- android:src="@drawable/images"
- android:visibility="gone" />
- <ListView
- android:id="@+id/DrawerList"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:text="@string/drawer_hint" />
- </LinearLayout>
- </android.support.v4.widget.DrawerLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement