Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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 -->
14
    <ListView
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"/>
24
 
25
 
26
 
27
</android.support.v4.widget.DrawerLayout>