TubeLab-App-Android/app/src/main/res/layout/activity_playlists.xml

38 lines
1.7 KiB
XML
Raw Normal View History

2020-07-01 16:36:08 +02:00
<?xml version="1.0" encoding="utf-8"?><!--
Copyright 2020 Thomas Schneider
This file is a part of TubeLab
This program is free software; you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
TubeLab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along with TubeLab; if not,
see <http://www.gnu.org/licenses>.
-->
2020-06-30 17:26:20 +02:00
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-08 16:21:14 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-06-30 17:26:20 +02:00
android:fitsSystemWindows="true">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-09-16 17:27:07 +02:00
tools:context=".PlaylistsActivity">
2020-06-30 17:26:20 +02:00
2020-10-08 16:21:14 +02:00
<fragment
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
2020-06-30 17:26:20 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-08 16:21:14 +02:00
app:defaultNavHost="true"
/>
2020-06-30 17:26:20 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.drawerlayout.widget.DrawerLayout>