2016-06-04 17:28:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-03 23:28:04 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-06-04 17:28:05 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:orientation="vertical"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-04 21:34:21 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
2022-04-06 08:58:52 +02:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2018-06-04 21:34:21 +02:00
|
|
|
android:id="@+id/toolbar"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
2018-06-04 21:34:21 +02:00
|
|
|
app:contentInsetEndWithActions="48dp"
|
|
|
|
app:contentInsetStartWithNavigation="48dp"
|
2022-04-06 08:58:52 +02:00
|
|
|
android:elevation="2dp">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2018-06-04 21:34:21 +02:00
|
|
|
android:id="@+id/tabs_normal"
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-05-04 19:13:56 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-06-04 21:34:21 +02:00
|
|
|
android:background="@android:color/transparent"
|
2022-04-06 08:58:52 +02:00
|
|
|
|
2018-06-04 21:34:21 +02:00
|
|
|
app:tabMode="scrollable" />
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2018-06-04 21:34:21 +02:00
|
|
|
android:id="@+id/tabs_compact"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/transparent"
|
2018-06-04 21:34:21 +02:00
|
|
|
app:tabMinWidth="0dp"
|
|
|
|
app:tabPadding="0dp"
|
2022-04-06 08:58:52 +02:00
|
|
|
|
2018-06-04 21:34:21 +02:00
|
|
|
app:tabMode="scrollable" />
|
2022-02-23 19:05:55 +01:00
|
|
|
|
2022-04-06 08:58:52 +02:00
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
2020-04-25 21:52:20 +02:00
|
|
|
android:id="@+id/main_drawer_layout"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp">
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2020-04-25 21:52:20 +02:00
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
|
|
android:id="@+id/main_pager"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2017-05-04 19:13:56 +02:00
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<com.google.android.material.navigation.NavigationView
|
2020-04-25 21:52:20 +02:00
|
|
|
android:id="@+id/main_navigation_view"
|
2018-06-03 23:28:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-12-17 13:59:06 +01:00
|
|
|
app:itemBackground="?attr/selectableItemBackground"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:layout_gravity="start"
|
2022-03-15 13:24:51 +01:00
|
|
|
app:itemIconTint="?android:textColorPrimary"
|
|
|
|
app:itemTextColor="?android:textColorPrimary"/>
|
2019-05-16 13:57:37 +02:00
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|
2017-04-29 20:16:50 +02:00
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
</LinearLayout>
|