74bd493878
* add possibility to move the main navigation to the bottom * add top toolbar with drawer toggle, title and search button
86 lines
3.6 KiB
XML
86 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/mainDrawerLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.keylesspalace.tusky.MainActivity">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="@dimen/actionbar_elevation"
|
|
app:elevationOverlayEnabled="false">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/mainToolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
app:layout_scrollFlags="scroll|enterAlways" />
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tabLayout"
|
|
style="@style/TuskyTabAppearance"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:tabGravity="fill"
|
|
app:tabMaxWidth="0dp"
|
|
app:tabMode="fixed" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="?attr/actionBarSize"
|
|
android:background="?attr/windowBackgroundColor"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
<com.google.android.material.bottomappbar.BottomAppBar
|
|
android:id="@+id/bottomNav"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
app:contentInsetStart="0dp"
|
|
app:fabAlignmentMode="end">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/bottomTabLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:tabIndicator="@null"
|
|
app:tabMode="fixed" />
|
|
|
|
</com.google.android.material.bottomappbar.BottomAppBar>
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/composeButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/fabMargin"
|
|
android:contentDescription="@string/action_compose"
|
|
app:layout_anchor="@id/viewPager"
|
|
app:layout_anchorGravity="bottom|end"
|
|
app:srcCompat="@drawable/ic_create_24dp" />
|
|
|
|
<include layout="@layout/item_status_bottom_sheet" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<com.mikepenz.materialdrawer.widget.MaterialDrawerSliderView
|
|
android:id="@+id/mainDrawer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:fitsSystemWindows="true" />
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|
|
|