summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2017-04-15 15:59:12 +0200
committerByteHamster <info@bytehamster.com>2017-04-15 15:59:12 +0200
commit8f226803cbfeaee628ca5b745bab03a7293c84d1 (patch)
treecac4eedd2d8c0fa5d184ade6a153dddc55619f1b /app/src/main/res/layout
parent2f5fc1966d15054cf0674bc256f422c1ba1cc803 (diff)
downloadAntennaPod-8f226803cbfeaee628ca5b745bab03a7293c84d1.zip
Added notice that playback speed is not taken into account
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/statistics_mode_select_dialog.xml30
1 files changed, 18 insertions, 12 deletions
diff --git a/app/src/main/res/layout/statistics_mode_select_dialog.xml b/app/src/main/res/layout/statistics_mode_select_dialog.xml
index 7918433d5..8f8e1e657 100644
--- a/app/src/main/res/layout/statistics_mode_select_dialog.xml
+++ b/app/src/main/res/layout/statistics_mode_select_dialog.xml
@@ -1,19 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="16dp">
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="16dp">
+
+ <TextView
+ android:text="@string/statistics_speed_not_counted"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"/>
<RadioButton
- android:id="@+id/statistics_mode_normal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/statistics_mode_normal" />
+ android:id="@+id/statistics_mode_normal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/statistics_mode_normal"/>
<RadioButton
- android:id="@+id/statistics_mode_count_all"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/statistics_mode_count_all" />
+ android:id="@+id/statistics_mode_count_all"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/statistics_mode_count_all"/>
</RadioGroup>