54 lines
1.8 KiB
XML
54 lines
1.8 KiB
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="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="16dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleText"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/dumpstate_selection_title"
|
||
|
|
android:textSize="18sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:layout_marginBottom="16dp"/>
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/dumpstateRecyclerView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:maxHeight="300dp"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/emptyView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/no_dumpstate_found"
|
||
|
|
android:gravity="center"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:padding="16dp"/>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="end"
|
||
|
|
android:layout_marginTop="16dp">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/cancelButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@android:string/cancel"
|
||
|
|
style="@style/Widget.AppCompat.Button.Borderless"/>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/selectButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/select_button"
|
||
|
|
android:enabled="false"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|