2014-07-16 21:12:01 +00:00
|
|
|
<!-- Copyright 2014 ACR Development -->
|
2014-04-28 19:41:40 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-29 02:17:25 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:id="@+id/main_layout"
|
2013-02-16 03:18:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-04-17 18:54:20 +00:00
|
|
|
android:background="@null"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:orientation="vertical" >
|
2013-02-16 03:18:08 +00:00
|
|
|
|
2014-04-28 19:41:40 +00:00
|
|
|
<android.support.v4.widget.DrawerLayout
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
2015-01-26 18:09:27 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true" >
|
2014-04-28 19:41:40 +00:00
|
|
|
|
2014-12-31 18:12:37 +00:00
|
|
|
<LinearLayout
|
2015-01-27 16:38:13 +00:00
|
|
|
android:id="@+id/ui_layout"
|
2014-04-28 19:41:40 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-12-31 18:12:37 +00:00
|
|
|
android:layout_height="match_parent"
|
2015-01-26 18:09:27 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2015-01-29 02:17:25 +00:00
|
|
|
<include layout="@layout/toolbar" />
|
2014-12-31 18:12:37 +00:00
|
|
|
|
2015-01-28 00:18:09 +00:00
|
|
|
<include layout="@layout/browser_content" />
|
2014-12-31 18:12:37 +00:00
|
|
|
|
|
|
|
<include layout="@layout/search_interface" />
|
|
|
|
</LinearLayout>
|
2014-04-28 19:41:40 +00:00
|
|
|
|
2015-01-27 16:38:13 +00:00
|
|
|
<include layout="@layout/tab_drawer" />
|
2014-04-28 19:41:40 +00:00
|
|
|
|
2015-01-27 16:38:13 +00:00
|
|
|
<include layout="@layout/bookmark_drawer" />
|
2014-04-28 19:41:40 +00:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|
2013-02-16 03:18:08 +00:00
|
|
|
|
2014-04-28 19:41:40 +00:00
|
|
|
</LinearLayout>
|