AquaStream/app/src/main/res/layout/bottom_selection_dialog.xml

59 lines
2.3 KiB
XML
Raw Normal View History

2021-08-06 20:55:11 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-01-29 18:57:19 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2021-08-29 18:42:44 +00:00
xmlns:tools="http://schemas.android.com/tools"
2021-08-06 20:55:11 +00:00
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text1"
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="?attr/textColor"
android:layout_width="match_parent"
android:layout_rowWeight="1"
tools:text="Test"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content" />
2021-08-06 20:55:11 +00:00
<ListView
2021-10-09 21:59:37 +00:00
android:nextFocusRight="@id/cancel_btt"
android:nextFocusLeft="@id/apply_btt"
2021-08-06 20:55:11 +00:00
android:id="@+id/listview1"
android:layout_marginBottom="60dp"
android:paddingTop="10dp"
2021-12-26 00:05:10 +00:00
android:requiresFadingEdge="vertical"
2021-08-06 20:55:11 +00:00
tools:listitem="@layout/sort_bottom_single_choice"
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-01-29 18:57:19 +00:00
android:layout_rowWeight="1" />
2021-08-06 20:55:11 +00:00
<LinearLayout
android:id="@+id/apply_btt_holder"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:gravity="bottom|end"
android:layout_marginTop="-60dp"
android:layout_width="match_parent"
android:layout_height="60dp">
<com.google.android.material.button.MaterialButton
style="@style/WhiteButton"
android:layout_gravity="center_vertical|end"
android:text="@string/sort_apply"
android:id="@+id/apply_btt"
2022-01-29 18:57:19 +00:00
android:layout_width="wrap_content" />
2021-08-06 20:55:11 +00:00
<com.google.android.material.button.MaterialButton
style="@style/BlackButton"
android:layout_gravity="center_vertical|end"
android:text="@string/sort_cancel"
android:id="@+id/cancel_btt"
2022-01-29 18:57:19 +00:00
android:layout_width="wrap_content" />
2021-08-06 20:55:11 +00:00
</LinearLayout>
</LinearLayout>