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

37 lines
1.4 KiB
XML
Raw Normal View History

2016-08-02 01:26:12 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +02:00
<org.schabi.newpipe.views.FocusAwareDrawerLayout 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
android:layout_width="match_parent"
2020-09-14 01:46:00 +02:00
android:layout_height="match_parent">
2016-08-02 01:26:12 +02:00
<org.schabi.newpipe.views.FocusAwareCoordinator
2016-08-02 01:42:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.fragment.app.FragmentContainerView
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
2020-10-31 06:53:28 +01:00
<include
layout="@layout/toolbar_layout"
android:id="@+id/toolbar_layout"/>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_player_holder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
app:behavior_hideable="true"
app:behavior_peekHeight="0dp"
2022-04-08 09:35:14 +02:00
app:layout_behavior="org.schabi.newpipe.player.gesture.CustomBottomSheetBehavior" />
</org.schabi.newpipe.views.FocusAwareCoordinator>
2020-10-31 06:53:28 +01:00
<include
layout="@layout/drawer_layout"
android:id="@+id/drawer_layout" />
2018-02-16 14:45:52 +01:00
</org.schabi.newpipe.views.FocusAwareDrawerLayout>