[IOT-1089] Change Android build system to accomodate both Android and Generic Java...
[contrib/iotivity.git] / java / examples-android / simplebase / src / main / res / layout / activity_simplebase.xml
1 <?xml version="1.0" encoding="utf-8"?>
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=".SimpleBase" >
8
9     <FrameLayout
10         android:id="@+id/container"
11         android:layout_width="match_parent"
12         android:layout_height="match_parent" />
13
14     <fragment
15         android:id="@+id/navigation_drawer"
16         android:name="org.iotivity.base.examples.DrawerFragment"
17         android:layout_width="@dimen/navigation_drawer_width"
18         android:layout_height="match_parent"
19         android:layout_gravity="start"
20         tools:layout="@layout/fragment_drawer" />
21
22 </android.support.v4.widget.DrawerLayout>