2016-06-09 09:46:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/drawerLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true" >
|
|
|
|
|
|
|
|
<!-- activity view -->
|
2016-08-11 10:14:33 +00:00
|
|
|
<WebView
|
|
|
|
android:id="@+id/screen_wait"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2016-06-09 09:46:46 +00:00
|
|
|
<LinearLayout
|
2016-08-11 10:14:33 +00:00
|
|
|
android:id="@+id/screen_main"
|
2016-06-09 09:46:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-07-07 10:12:05 +00:00
|
|
|
android:orientation="vertical">
|
2016-06-09 09:46:46 +00:00
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-07-07 10:12:05 +00:00
|
|
|
android:background="?attr/background_actionbar"
|
2016-06-09 09:46:46 +00:00
|
|
|
android:minHeight="?attr/actionBarSize" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/gridview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingBottom="40dip"
|
|
|
|
android:paddingLeft="@dimen/galleryHalfSpacing"
|
|
|
|
android:paddingRight="@dimen/galleryHalfSpacing"
|
|
|
|
android:paddingTop="@dimen/galleryHalfSpacing"
|
2016-07-07 10:12:05 +00:00
|
|
|
android:background="#F3F3F3"
|
2016-06-09 09:46:46 +00:00
|
|
|
android:scrollbars="vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- navigation drawer -->
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="280dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:fitsSystemWindows="true" >
|
|
|
|
|
|
|
|
<emu.project64.MenuListView
|
|
|
|
android:id="@+id/drawerNavigation"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
2016-07-08 12:43:51 +00:00
|
|
|
android:background="?attr/background_gallerymenu"
|
2016-06-09 09:46:46 +00:00
|
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|