2016-08-01 23:26:12 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-09-20 09:48:34 +00:00
|
|
|
<org.schabi.newpipe.views.FocusAwareDrawerLayout
|
2017-04-09 17:34:00 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-01 23:26:12 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-19 16:21:46 +00:00
|
|
|
android:id="@+id/drawer_layout"
|
2016-08-01 23:26:12 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-06-13 20:35:20 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true">
|
2016-08-01 23:26:12 +00:00
|
|
|
|
2018-02-19 20:04:13 +00:00
|
|
|
|
2017-04-09 17:34:00 +00:00
|
|
|
<FrameLayout
|
2016-08-01 23:42:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-04-26 19:24:33 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-11-19 16:21:46 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context="org.schabi.newpipe.MainActivity">
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="?attr/actionBarSize" />
|
2017-04-26 19:24:33 +00:00
|
|
|
|
2017-11-19 16:21:46 +00:00
|
|
|
<include layout="@layout/toolbar_layout" />
|
|
|
|
</FrameLayout>
|
2016-08-01 23:42:05 +00:00
|
|
|
|
2018-02-19 20:04:13 +00:00
|
|
|
<include layout="@layout/drawer_layout"/>
|
2018-02-16 13:45:52 +00:00
|
|
|
|
2019-09-20 09:48:34 +00:00
|
|
|
</org.schabi.newpipe.views.FocusAwareDrawerLayout>
|