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

71 lines
3.1 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-10-03 16:22:19 +02:00
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-06-25 16:57:13 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-10-03 16:22:19 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
2020-06-25 16:57:13 +02:00
android:layout_width="match_parent"
2020-10-03 16:22:19 +02:00
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<androidx.coordinatorlayout.widget.CoordinatorLayout
2020-06-25 16:57:13 +02:00
android:layout_width="match_parent"
2020-10-03 16:22:19 +02:00
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true"
/>
</com.google.android.material.appbar.AppBarLayout>
2020-06-25 16:57:13 +02:00
2020-10-08 16:21:14 +02:00
<FrameLayout
2020-10-03 16:22:19 +02:00
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/nav_host_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-03 17:02:48 +02:00
android:layout_marginBottom="?attr/actionBarSize"
2020-10-08 16:21:14 +02:00
/>
2020-10-03 16:22:19 +02:00
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"
android:layout_gravity="bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
app:itemIconTint="@color/bottom_nav_color"
app:itemTextColor="@color/bottom_nav_color"
/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2020-06-26 18:17:17 +02:00
2020-10-03 16:22:19 +02:00
</androidx.drawerlayout.widget.DrawerLayout>