NewPipe-app-android/app/src/main/res/layout/activity_main.xml

30 lines
1.1 KiB
XML
Raw Normal View History

2016-08-02 01:26:12 +02:00
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2016-08-02 01:26:12 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
2016-08-02 01:26:12 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-08-02 01:26:12 +02:00
<FrameLayout
2016-08-02 01:42:05 +02:00
android:layout_width="match_parent"
2017-04-26 21:24:33 +02:00
android:layout_height="match_parent"
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 21:24:33 +02:00
<include layout="@layout/toolbar_layout" />
</FrameLayout>
2016-08-02 01:42:05 +02:00
<android.support.design.widget.NavigationView
android:id="@+id/navigation"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:menu="@menu/drawer_items" />
</android.support.v4.widget.DrawerLayout>