2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 09:58:08 +00:00

Replace play PNGs with a vector drawable.

This commit is contained in:
Isira Seneviratne 2020-07-08 15:23:38 +05:30 committed by Nicolas Fella
parent b2bf2dca0f
commit a13f140b90
7 changed files with 11 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M8,5v14l11,-7z"/>
</vector>

View File

@ -231,7 +231,7 @@ public class MprisPlugin extends Plugin {
@Override @Override
public Drawable getIcon() { public Drawable getIcon() {
return ContextCompat.getDrawable(context, R.drawable.mpris_plugin_action); return ContextCompat.getDrawable(context, R.drawable.mpris_plugin_action_24dp);
} }
@Override @Override