Rabbit-R1/android (non root)/java/resources/res/layout/design_bottom_sheet_dialog.xml
2024-05-21 17:08:36 -04:00

27 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/container"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/touch_outside"
android:focusable="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:soundEffectsEnabled="false"
android:importantForAccessibility="no"/>
<FrameLayout
android:layout_gravity="top|center_horizontal"
android:id="@+id/design_bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/bottom_sheet_behavior"
style="?attr/bottomSheetStyle"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</FrameLayout>