summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2020-10-29 21:07:29 +0100
committerByteHamster <info@bytehamster.com>2020-10-29 21:07:29 +0100
commit96e68f69ded983bbb3eec5d45df6b11b7f815fda (patch)
treec0bb929c85e42280e128925a18f2633930237143 /app/src/main/res/layout
parent4a4392e79739aeab15eb53deab1840be814f3ecf (diff)
downloadAntennaPod-96e68f69ded983bbb3eec5d45df6b11b7f815fda.zip
Do not display duplicate share menu
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/share_episode_dialog.xml17
1 files changed, 11 insertions, 6 deletions
diff --git a/app/src/main/res/layout/share_episode_dialog.xml b/app/src/main/res/layout/share_episode_dialog.xml
index 8cf955d4c..539efa5c8 100644
--- a/app/src/main/res/layout/share_episode_dialog.xml
+++ b/app/src/main/res/layout/share_episode_dialog.xml
@@ -13,17 +13,22 @@
android:layout_marginBottom="16dp"
android:orientation="vertical">
- <RadioButton android:id="@+id/share_episode_website_radio"
+ <RadioButton
+ android:id="@+id/share_episode_website_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/share_dialog_episode_website_label"
- android:checked="true"
- />
- <RadioButton android:id="@+id/share_media_file_radio"
+ android:checked="true" />
+ <RadioButton
+ android:id="@+id/share_media_file_url_radio"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:text="@string/share_dialog_media_file_label"
- />
+ android:text="@string/share_dialog_media_file_url_label" />
+ <RadioButton
+ android:id="@+id/share_media_file_radio"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/share_dialog_media_file_label" />
</RadioGroup>
<TextView