summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feed_refresh_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/feed_refresh_dialog.xml')
-rw-r--r--app/src/main/res/layout/feed_refresh_dialog.xml40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/src/main/res/layout/feed_refresh_dialog.xml b/app/src/main/res/layout/feed_refresh_dialog.xml
deleted file mode 100644
index 5a6770a80..000000000
--- a/app/src/main/res/layout/feed_refresh_dialog.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RadioGroup
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/radioGroup"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp">
-
- <RadioButton
- android:id="@+id/intervalRadioButton"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/feed_refresh_interval" />
-
- <Spinner
- android:id="@+id/spinner"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone" />
-
- <RadioButton
- android:id="@+id/timeRadioButton"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/feed_refresh_time" />
-
- <de.danoeh.antennapod.view.TimePicker
- android:id="@+id/timePicker"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:timePickerMode="spinner"
- android:visibility="gone" />
-
- <RadioButton
- android:id="@+id/disableRadioButton"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/feed_refresh_never" />
-
-</RadioGroup>