diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2024-02-25 14:01:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 14:01:03 +0100 |
commit | 82c93bf7ee3d91395533068fdfe640dfa53113fe (patch) | |
tree | 83beaea8826b94adc181b9f3643e3b6a2c2fe603 /ui/statistics/src/main/res | |
parent | ef4af0d29d6742fe07e32971b55a1236f8ad08ab (diff) | |
download | AntennaPod-82c93bf7ee3d91395533068fdfe640dfa53113fe.zip |
Guess next episode release date (#6925)
Diffstat (limited to 'ui/statistics/src/main/res')
-rw-r--r-- | ui/statistics/src/main/res/layout/feed_statistics.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ui/statistics/src/main/res/layout/feed_statistics.xml b/ui/statistics/src/main/res/layout/feed_statistics.xml index 6b9a7fa4c..78630758f 100644 --- a/ui/statistics/src/main/res/layout/feed_statistics.xml +++ b/ui/statistics/src/main/res/layout/feed_statistics.xml @@ -11,12 +11,14 @@ <TextView android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:text="@string/statistics_episodes_started_total" /> <com.joanzapata.iconify.widget.IconTextView android:id="@+id/startedTotalLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_marginLeft="8dp" android:layout_marginStart="8dp" android:text="@string/wait_icon" @@ -29,12 +31,14 @@ <TextView android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:text="@string/statistics_time_played" /> <com.joanzapata.iconify.widget.IconTextView android:id="@+id/timePlayedLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_marginLeft="8dp" android:layout_marginStart="8dp" android:text="@string/wait_icon" @@ -48,12 +52,14 @@ <TextView android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:text="@string/statistics_total_duration" /> <com.joanzapata.iconify.widget.IconTextView android:id="@+id/totalDurationLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_marginLeft="8dp" android:layout_marginStart="8dp" android:text="@string/wait_icon" @@ -66,12 +72,14 @@ <TextView android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:text="@string/statistics_episodes_on_device" /> <com.joanzapata.iconify.widget.IconTextView android:id="@+id/onDeviceLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_marginLeft="8dp" android:layout_marginStart="8dp" android:text="@string/wait_icon" @@ -84,12 +92,14 @@ <TextView android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:text="@string/statistics_space_used" /> <com.joanzapata.iconify.widget.IconTextView android:id="@+id/spaceUsedLabel" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_weight="1" android:layout_marginLeft="8dp" android:layout_marginStart="8dp" android:text="@string/wait_icon" @@ -97,4 +107,25 @@ </TableRow> + <TableRow> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/statistics_expected_next_episode" /> + + <com.joanzapata.iconify.widget.IconTextView + android:id="@+id/expectedNextEpisodeLabel" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginLeft="8dp" + android:layout_marginStart="8dp" + android:lines="2" + android:text="@string/wait_icon" + tools:text="Jan 1st (weekly)" /> + + </TableRow> + </TableLayout> |