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