| 14792 |
manas |
1 |
<android.support.v4.widget.DrawerLayout
|
|
|
2 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:id="@+id/drawer_layout"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent">
|
|
|
6 |
|
|
|
7 |
<!-- Framelayout to display Fragments -->
|
|
|
8 |
<FrameLayout
|
|
|
9 |
android:id="@+id/frame_container"
|
|
|
10 |
android:layout_width="match_parent"
|
|
|
11 |
android:layout_height="match_parent" />
|
|
|
12 |
|
|
|
13 |
<!-- Listview to display slider menu -->
|
| 16310 |
manas |
14 |
<!--<ListView
|
| 14792 |
manas |
15 |
android:id="@+id/list_slidermenu"
|
|
|
16 |
android:layout_width="200dp"
|
|
|
17 |
android:layout_height="wrap_content"
|
|
|
18 |
android:layout_gravity="start"
|
|
|
19 |
android:choiceMode="singleChoice"
|
|
|
20 |
android:divider="@color/Black"
|
|
|
21 |
android:dividerHeight="1dp"
|
|
|
22 |
android:listSelector="@drawable/abc_list_selector_holo_dark"
|
|
|
23 |
android:background="@color/green_tobe_used"/>
|
| 16310 |
manas |
24 |
-->
|
|
|
25 |
<LinearLayout
|
|
|
26 |
android:id="@+id/navDrawerView"
|
|
|
27 |
android:layout_width="200dp"
|
|
|
28 |
android:layout_height="wrap_content"
|
|
|
29 |
android:layout_gravity="start"
|
|
|
30 |
android:background="@android:color/white"
|
|
|
31 |
android:orientation="vertical" >
|
| 14792 |
manas |
32 |
|
|
|
33 |
|
| 16310 |
manas |
34 |
<ExpandableListView
|
|
|
35 |
android:id="@+id/nav_left_drawer"
|
|
|
36 |
android:layout_width="200dp"
|
|
|
37 |
android:layout_height="wrap_content"
|
|
|
38 |
android:background="@color/green_tobe_used"
|
|
|
39 |
android:choiceMode="singleChoice"
|
|
|
40 |
android:divider="@color/Black"
|
|
|
41 |
android:dividerHeight="1dp"
|
|
|
42 |
android:listSelector="@drawable/abc_list_selector_holo_dark"
|
|
|
43 |
android:groupIndicator="@null"
|
|
|
44 |
android:layout_gravity="start"/>
|
| 14792 |
manas |
45 |
|
| 16310 |
manas |
46 |
</LinearLayout>
|
|
|
47 |
|
|
|
48 |
|
| 14792 |
manas |
49 |
</android.support.v4.widget.DrawerLayout>
|