45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.cradle.iitc_mobile.IITC_WebView
|
|
android:id="@+id/iitc_webview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/imageLoading"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/darker_gray"
|
|
android:paddingBottom="20dp"
|
|
android:paddingTop="20dp"
|
|
android:src="@drawable/iitc"
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
<!-- The navigation drawer -->
|
|
|
|
<ListView
|
|
android:id="@+id/left_drawer"
|
|
android:layout_width="180dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="@color/drawer_background"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="@android:color/transparent"
|
|
android:dividerHeight="0dp"/>
|
|
|
|
<!-- The right drawer -->
|
|
|
|
<ListView
|
|
android:id="@+id/right_drawer"
|
|
android:layout_width="260dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="end"
|
|
android:background="@color/drawer_background"
|
|
android:divider="@android:color/transparent"
|
|
android:dividerHeight="0dp"/>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |