tachiyomi/app/src/main/res/layout/main_activity.xml

94 lines
3.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
2015-12-30 14:10:31 +01:00
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.drawerlayout.widget.DrawerLayout
android:id="@+id/drawer"
2015-09-24 17:27:43 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
2015-09-24 17:27:43 +02:00
2020-02-01 10:29:26 +01:00
<androidx.constraintlayout.widget.ConstraintLayout
2017-05-06 15:49:39 +02:00
android:orientation="vertical"
android:id="@+id/main_content"
2015-12-26 00:07:45 +01:00
android:layout_width="match_parent"
2019-10-24 08:43:18 +02:00
android:fitsSystemWindows="true"
android:layout_height="match_parent">
2015-12-26 00:07:45 +01:00
<eu.kanade.tachiyomi.widget.ElevationAppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
2020-02-01 10:29:26 +01:00
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_height="wrap_content">
2015-12-26 00:07:45 +01:00
2019-10-29 06:51:46 +01:00
<androidx.appcompat.widget.Toolbar
2017-05-25 12:16:58 +02:00
android:id="@+id/toolbar"
xmlns:android="http://schemas.android.com/apk/res/android"
2017-05-25 12:16:58 +02:00
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="?attr/actionBarTheme"/>
2019-10-29 06:51:46 +01:00
<com.google.android.material.tabs.TabLayout
2016-04-13 16:42:59 +02:00
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.ActionBar.Tab"
2020-02-01 10:29:26 +01:00
app:tabBackground="?colorPrimary"
app:tabIndicatorColor="?attr/tabBarIconColor"
app:tabTextColor="?attr/tabBarIconColor"
app:tabInlineLabel="true"
2016-04-13 16:42:59 +02:00
app:tabGravity="center"
2020-02-01 10:29:26 +01:00
app:tabMode="auto"
2016-04-13 16:42:59 +02:00
app:tabMinWidth="75dp"/>
</eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
2015-09-25 12:44:11 +02:00
2017-05-06 15:49:39 +02:00
<com.bluelinelabs.conductor.ChangeHandlerFrameLayout
android:id="@+id/controller_container"
2015-09-24 17:27:43 +02:00
android:layout_width="match_parent"
2020-02-01 10:29:26 +01:00
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/navigationView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/appbar">
2015-09-24 17:27:43 +02:00
2020-02-01 10:29:26 +01:00
</com.bluelinelabs.conductor.ChangeHandlerFrameLayout>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:tabBackground="@color/rippleColor"
app:itemIconTint="@drawable/bottom_nav_item_selector"
app:tabRippleColor="@color/rippleColor"
app:itemTextColor="?attr/tabBarIconColor"
app:tabTextColor="?attr/tabBarIconColor"
app:itemRippleColor="@color/rippleColor"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:menu="@menu/bottom_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
2019-10-29 06:51:46 +01:00
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
2016-03-12 14:22:40 +01:00
android:theme="?attr/navigation_view_theme"
app:headerLayout="@layout/navigation_header"
app:menu="@menu/menu_navigation"/>
2017-05-06 15:49:39 +02:00
2019-10-29 06:51:46 +01:00
</androidx.drawerlayout.widget.DrawerLayout>
</FrameLayout>