diff options
author | Dhruv Patidar <103873587+dhruvpatidar359@users.noreply.github.com> | 2022-08-14 15:52:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 12:22:01 +0200 |
commit | 8e994165e669af71800d822ecfa0a9b641f806d2 (patch) | |
tree | e30bdf114fcf8e07e48f7099c52f89b0c568fcff | |
parent | 440b20487b9c48ddc1e20ba008262689916e8eaa (diff) | |
download | AntennaPod-8e994165e669af71800d822ecfa0a9b641f806d2.zip |
Use downwards arrow icon to close player screen (#6012)
-rw-r--r-- | app/src/main/res/layout/audioplayer_fragment.xml | 2 | ||||
-rw-r--r-- | core/src/main/res/drawable/ic_arrow_down.xml | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/app/src/main/res/layout/audioplayer_fragment.xml b/app/src/main/res/layout/audioplayer_fragment.xml index 4e4ab389c..2008a8f33 100644 --- a/app/src/main/res/layout/audioplayer_fragment.xml +++ b/app/src/main/res/layout/audioplayer_fragment.xml @@ -14,7 +14,7 @@ android:minHeight="?attr/actionBarSize" android:theme="?attr/actionBarTheme" app:navigationContentDescription="@string/toolbar_back_button_content_description" - app:navigationIcon="?homeAsUpIndicator" /> + app:navigationIcon="@drawable/ic_arrow_down" /> <androidx.fragment.app.FragmentContainerView android:id="@+id/playerFragment" diff --git a/core/src/main/res/drawable/ic_arrow_down.xml b/core/src/main/res/drawable/ic_arrow_down.xml new file mode 100644 index 000000000..187aa79c7 --- /dev/null +++ b/core/src/main/res/drawable/ic_arrow_down.xml @@ -0,0 +1,7 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:height="24dp" + android:width="24dp" + android:viewportHeight="24" + android:viewportWidth="24"> + <path android:fillColor="?attr/action_icon_color" android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/> +</vector> |