summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-08-07 21:36:15 +0200
committerByteHamster <info@bytehamster.com>2022-09-18 19:12:41 +0200
commit37b49b1e386be9449f8c093ab0b23c83d4b57ac1 (patch)
treeb69f969940220b925a7f0ac46eb5dba25bf6a444 /app/src/main/res/layout
parent2740816bb85041d4d67fe242bcf0dddb5ad06116 (diff)
downloadAntennaPod-37b49b1e386be9449f8c093ab0b23c83d4b57ac1.zip
Use segmented buttons for filter
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/filter_dialog_row.xml70
1 files changed, 14 insertions, 56 deletions
diff --git a/app/src/main/res/layout/filter_dialog_row.xml b/app/src/main/res/layout/filter_dialog_row.xml
index 7ecfc8223..a551b5db9 100644
--- a/app/src/main/res/layout/filter_dialog_row.xml
+++ b/app/src/main/res/layout/filter_dialog_row.xml
@@ -1,66 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
-<de.danoeh.antennapod.ui.common.RecursiveRadioGroup
+<com.google.android.material.button.MaterialButtonToggleGroup
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingBottom="8dp"
- android:orientation="horizontal">
+ android:layout_height="wrap_content"
+ android:weightSum="2"
+ app:singleSelection="true">
- <androidx.cardview.widget.CardView
+ <Button
+ android:id="@+id/filterButton1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:clipChildren="true"
- android:layout_gravity="center_vertical"
- app:cardCornerRadius="32dp"
- app:cardElevation="0dp">
+ style="?attr/materialButtonOutlinedStyle" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
-
- <RadioButton
- android:id="@+id/filter_dialog_radioButton1"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_marginEnd="2dp"
- android:layout_marginRight="2dp"
- android:layout_weight="1"
- android:background="?attr/filter_dialog_button_background"
- android:minHeight="40dp"
- android:foreground="?android:attr/selectableItemBackground"
- android:checked="false"
- android:gravity="center"
- android:textColor="@color/filter_dialog_button_text"
- style="@style/NoButtonRadio" />
-
- <RadioButton
- android:id="@+id/filter_dialog_radioButton2"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:minHeight="40dp"
- android:layout_weight="1"
- android:background="?attr/filter_dialog_button_background"
- android:foreground="?android:attr/selectableItemBackground"
- android:checked="false"
- android:gravity="center"
- android:textColor="@color/filter_dialog_button_text"
- style="@style/NoButtonRadio" />
-
- </LinearLayout>
-
- </androidx.cardview.widget.CardView>
-
- <RadioButton
- android:id="@+id/filter_dialog_clear"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:background="@drawable/ic_filter_close"
- android:foreground="?android:attr/selectableItemBackground"
- android:layout_gravity="center_vertical"
- android:checked="true"
- style="@style/NoButtonRadio" />
+ <Button
+ android:id="@+id/filterButton2"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ style="?attr/materialButtonOutlinedStyle" />
-</de.danoeh.antennapod.ui.common.RecursiveRadioGroup>
+</com.google.android.material.button.MaterialButtonToggleGroup>