mirror of
https://github.com/kuba2k2/NavLib.git
synced 2025-04-05 16:24:27 +02:00
110 lines
4.6 KiB
XML
110 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:translationZ="10dp"
|
|
tools:targetApi="lollipop">
|
|
|
|
<View
|
|
android:id="@+id/nv_scrim"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#99000000"
|
|
android:visibility="invisible"
|
|
tools:visibility="gone" />
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/nv_bottomSheetView"
|
|
style="@style/width_max_600dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
app:behavior_hideable="true"
|
|
app:behavior_peekHeight="auto"
|
|
app:layout_behavior="@string/bottom_sheet_behavior"
|
|
tools:visibility="visible">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/nv_bottomSheetContent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bottom_sheet_background"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
tools:paddingBottom="48dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/nv_bottomSheetDragBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
app:srcCompat="@drawable/bottom_sheet_control_bar"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/textView2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Sorting order" />
|
|
|
|
<com.google.android.material.button.MaterialButtonToggleGroup
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:singleSelection="true">
|
|
|
|
<Button
|
|
android:id="@+id/button2"
|
|
style="?materialButtonOutlinedStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="By date"
|
|
app:icon="@drawable/ic_android"/>
|
|
|
|
<Button
|
|
android:id="@+id/button3"
|
|
style="?materialButtonOutlinedStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="By subject" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button4"
|
|
style="?materialButtonOutlinedStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="By sender" />
|
|
|
|
</com.google.android.material.button.MaterialButtonToggleGroup>
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/bs_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="50dp"
|
|
tools:listitem="@layout/nav_bs_item_primary"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
</layout> |