mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
25 lines
885 B
XML
25 lines
885 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="480dp"
|
|
android:id="@+id/bottom_sheet"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:background="?attr/mainBackground"
|
|
app:layout_behavior="@string/bottom_sheet_behavior"
|
|
app:behavior_peekHeight="0dp"
|
|
app:behavior_hideable="true"
|
|
>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container_sheet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginTop="8dp"
|
|
></FrameLayout>
|
|
|
|
</LinearLayout>
|