diff options
author | Tony Tam <149837+tonytamsf@users.noreply.github.com> | 2020-11-30 10:56:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 19:56:19 +0100 |
commit | 5661a85eabfd646a26c6e5ceba429d41469ce66e (patch) | |
tree | 0392a21c1cb44ba86dffb201ed143fc37c6c47c7 /core/src/main/res/drawable | |
parent | d4057185450521ed544f9814c303bccb4ae2ecca (diff) | |
download | AntennaPod-5661a85eabfd646a26c6e5ceba429d41469ce66e.zip |
Show replay button on the current chapter. (#4706)
Diffstat (limited to 'core/src/main/res/drawable')
-rw-r--r-- | core/src/main/res/drawable/ic_av_replay_black_48dp.xml | 9 | ||||
-rw-r--r-- | core/src/main/res/drawable/ic_av_replay_white_48dp.xml | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/core/src/main/res/drawable/ic_av_replay_black_48dp.xml b/core/src/main/res/drawable/ic_av_replay_black_48dp.xml new file mode 100644 index 000000000..1446ae48b --- /dev/null +++ b/core/src/main/res/drawable/ic_av_replay_black_48dp.xml @@ -0,0 +1,9 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt" + android:viewportWidth="24" + android:viewportHeight="24" + android:width="48dp" + android:height="48dp"> + <path + android:pathData="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6 -6 6 -6 -2.69 -6 -6H4c0 4.42 3.58 8 8 8s8 -3.58 8 -8 -3.58 -8 -8 -8z" + android:fillColor="#000000" /> +</vector> diff --git a/core/src/main/res/drawable/ic_av_replay_white_48dp.xml b/core/src/main/res/drawable/ic_av_replay_white_48dp.xml new file mode 100644 index 000000000..b6343effc --- /dev/null +++ b/core/src/main/res/drawable/ic_av_replay_white_48dp.xml @@ -0,0 +1,9 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt" + android:viewportWidth="24" + android:viewportHeight="24" + android:width="48dp" + android:height="48dp"> + <path + android:pathData="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6 -6 6s-6 -2.69 -6 -6H4c0 4.42 3.58 8 8 8s8 -3.58 8 -8S16.42 5 12 5z" + android:fillColor="#FFFFFF" /> +</vector> |