2016-08-02 01:26:12 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
2017-04-09 14:34:00 -03:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-02 01:26:12 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-19 17:21:46 +01:00
|
|
|
android:id="@+id/drawer_layout"
|
2016-08-02 01:26:12 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-13 22:35:20 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true">
|
2016-08-02 01:26:12 +02:00
|
|
|
|
2018-02-19 21:04:13 +01:00
|
|
|
|
2017-04-09 14:34:00 -03:00
|
|
|
<FrameLayout
|
2016-08-02 01:42:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-04-26 16:24:33 -03:00
|
|
|
android:layout_height="match_parent"
|
2017-11-19 17:21:46 +01: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 16:24:33 -03:00
|
|
|
|
2017-11-19 17:21:46 +01:00
|
|
|
<include layout="@layout/toolbar_layout" />
|
|
|
|
</FrameLayout>
|
2016-08-02 01:42:05 +02:00
|
|
|
|
2018-02-19 21:04:13 +01:00
|
|
|
<include layout="@layout/drawer_layout"/>
|
2018-02-16 14:45:52 +01:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|