blob: 07539b9e21290c23e2886eb877a2ffdc8a691c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
|