1 <!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
2 <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:id="@+id/drawer_layout"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 tools:context="com.samsung.srpol.MainActivity" >
9 <android.support.v4.view.ViewPager
10 android:id="@+id/myviewpager"
11 android:layout_width="match_parent"
12 android:layout_height="match_parent" >
14 <android.support.v4.view.PagerTabStrip
15 android:id="@+id/titlestrip"
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:background="@color/header_bg"
19 android:textColor="@color/text_main" />
20 </android.support.v4.view.ViewPager>
23 android:id="@+id/menu_container"
24 android:name="com.samsung.srpol.ui.drawer.MenuFragment"
25 android:layout_width="@dimen/menu_container_width"
26 android:layout_height="match_parent"
27 android:layout_gravity="start"
28 tools:layout="@layout/fragment_navigation_drawer" />
30 </android.support.v4.widget.DrawerLayout>