mirror of
https://github.com/kuba2k2/NavLib.git
synced 2025-04-04 15:54:27 +02:00
125 lines
4.9 KiB
XML
125 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge 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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:parentTag="FrameLayout">
|
|
|
|
<View
|
|
android:id="@+id/nv_statusBarBackground"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
tools:layout_height="25dp"
|
|
android:background="?android:windowBackground" />
|
|
|
|
<View
|
|
android:id="@+id/nv_navigationBarBackground"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
tools:layout_height="48dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="?colorPrimaryVariant"
|
|
tools:background="?colorPrimaryVariant" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/nv_drawerContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:id="@+id/nv_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:paddingTop="24dp"
|
|
tools:paddingBottom="48dp">
|
|
|
|
<pl.szczodrzynski.navlib.NavToolbar
|
|
android:id="@+id/nv_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?nv_actionBarBackground"
|
|
android:elevation="4dp"
|
|
app:title="@string/app_name"
|
|
tools:targetApi="lollipop" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/nv_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="?actionBarSize"
|
|
android:layout_marginBottom="?actionBarSize"
|
|
android:orientation="vertical">
|
|
|
|
<SeekBar
|
|
android:id="@+id/nv_elevation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="24dp"
|
|
android:max="20"
|
|
android:progress="4"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Set toolbar elevation"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
|
|
<pl.szczodrzynski.navlib.NavBottomBar
|
|
android:id="@+id/nv_bottomBar"
|
|
style="@style/Widget.MaterialComponents.BottomAppBar.Colored"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:visibility="visible"
|
|
app:fabAlignmentMode="center"
|
|
app:fabAnimationMode="scale" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/nv_floatingActionButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:visibility="gone"
|
|
app:layout_anchor="@id/nv_bottomBar"
|
|
app:backgroundTint="?colorAccent"
|
|
app:srcCompat="@android:drawable/ic_menu_edit"/>
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
android:id="@+id/nv_extendedFloatingActionButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:visibility="visible"
|
|
android:text=""
|
|
app:backgroundTint="?colorAccent"
|
|
app:icon="@android:drawable/ic_menu_edit"
|
|
app:layout_anchor="@+id/nv_bottomBar"
|
|
app:layout_anchorGravity="center|top"/>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
<pl.szczodrzynski.navlib.bottomsheet.NavBottomSheet
|
|
android:id="@+id/nv_bottomSheet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<View
|
|
android:id="@+id/nv_statusBarDarker"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
tools:layout_height="25dp"
|
|
android:background="#22000000" />
|
|
|
|
</merge> |