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

72 lines
3.0 KiB
XML
Raw Normal View History

2021-06-16 16:54:07 +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-06-16 16:54:07 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:background="@null"
android:layout_height="match_parent">
2021-07-02 18:46:18 +00:00
<LinearLayout
2021-06-16 16:54:07 +00:00
android:layout_width="match_parent"
2021-07-02 18:46:18 +00:00
android:layout_height="0dp"
android:orientation="vertical"
android:layout_weight="50">
2022-01-29 18:57:19 +00:00
2021-07-02 18:46:18 +00:00
<TextView
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:textStyle="bold"
android:text="@string/pick_source"
android:textSize="20sp"
android:textColor="?attr/textColor"
android:layout_width="match_parent"
android:layout_rowWeight="1"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content" />
2021-07-02 18:46:18 +00:00
<ListView
android:layout_marginTop="-10dp"
android:paddingTop="10dp"
android:id="@+id/sort_providers"
2021-09-19 20:33:39 +00:00
android:background="?attr/primaryBlackBackground"
2021-12-26 00:05:10 +00:00
android:requiresFadingEdge="vertical"
2021-07-02 18:46:18 +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-07-02 18:46:18 +00:00
</LinearLayout>
2022-01-29 18:57:19 +00:00
2021-07-02 18:46:18 +00:00
<LinearLayout
android:id="@+id/sort_subtitles_holder"
2021-06-16 16:54:07 +00:00
android:layout_width="match_parent"
2021-07-02 18:46:18 +00:00
android:layout_height="0dp"
android:orientation="vertical"
android:layout_weight="50">
2022-01-29 18:57:19 +00:00
2021-07-02 18:46:18 +00:00
<TextView
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:textStyle="bold"
android:text="@string/pick_subtitle"
android:textSize="20sp"
android:textColor="?attr/textColor"
android:layout_rowWeight="1"
android:layout_width="match_parent"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content" />
2021-07-02 18:46:18 +00:00
<ListView
android:layout_marginTop="-10dp"
android:paddingTop="10dp"
android:id="@+id/sort_subtitles"
2021-09-19 20:33:39 +00:00
android:background="?attr/primaryBlackBackground"
2021-12-26 00:05:10 +00:00
android:requiresFadingEdge="vertical"
2021-07-02 18:46:18 +00:00
tools:listitem="@layout/sort_bottom_single_choice"
android:layout_width="match_parent"
android:layout_rowWeight="1"
2022-01-29 18:57:19 +00:00
android:layout_height="match_parent" />
2021-07-02 18:46:18 +00:00
</LinearLayout>
2021-06-16 16:54:07 +00:00
</LinearLayout>