summaryrefslogtreecommitdiff
path: root/benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml')
-rw-r--r--benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml b/benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml
new file mode 100644
index 0000000..07539b9
--- /dev/null
+++ b/benchmark/app/src/main/res/layout/bottom_sheet_dialog.xml
@@ -0,0 +1,29 @@
+<?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="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:background="@color/grass"
+ android:id="@+id/slideUpContainer"
+ app:behavior_hideable="false"
+ app:behavior_peekHeight="65dp"
+ app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/divider"
+ android:layout_width="match_parent"
+ android:layout_height="60dp"
+ android:background="@drawable/list_handle_layout"
+ android:text="@string/divider_text"
+ android:gravity="center|center"
+ />
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/listContainer">
+ <androidx.recyclerview.widget.RecyclerView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" android:id="@+id/greenwashed">
+ </androidx.recyclerview.widget.RecyclerView>
+ </ScrollView>
+</LinearLayout> \ No newline at end of file