1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 android:orientation="vertical" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:minWidth="256dp" 8 android:minHeight="256dp"> 9 10 <TextView 11 android:layout_width="match_parent" 12 android:layout_height="wrap_content" 13 android:textColor="@android:color/black" 14 android:textSize="20sp" 15 android:padding="16sp" 16 android:text="Warnings"/> 17 18 <View 19 android:layout_width="match_parent" 20 android:layout_height="@dimen/divider_height" 21 android:background="@color/divider"/> 22 23 <androidx.recyclerview.widget.RecyclerView 24 android:id="@+id/recyclerView" 25 android:layout_width="match_parent" 26 android:layout_height="0dp" 27 android:layout_weight="1" 28 app:layoutManager="LinearLayoutManager"/> 29 30 <View 31 android:layout_width="match_parent" 32 android:layout_height="@dimen/divider_height" 33 android:background="@color/divider"/> 34 35 <Button 36 android:id="@+id/okButton" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:layout_gravity="right" 40 android:background="?selectableItemBackground" 41 android:textColor="@color/material_teal" 42 android:textSize="16sp" 43 android:text="OK"/> 44 45</LinearLayout>