[Android] Redesign again no thumbnail song icon

Alexandre Perraud git at videolan.org
Thu Feb 16 14:19:49 CET 2017


vlc-android | branch: master | Alexandre Perraud <4leyx4ndre at gmail.com> | Thu Feb 16 14:18:17 2017 +0100| [7b7d11144b94935a72649b44dc6040437f8589ed] | committer: Alexandre Perraud

Redesign again no thumbnail song icon

> https://code.videolan.org/videolan/vlc-android/commit/7b7d11144b94935a72649b44dc6040437f8589ed
---

 assets/images/svg/ic_no_song.svg                        |   9 +++++----
 vlc-android/res/drawable-hdpi/ic_no_song.png            | Bin 477 -> 708 bytes
 vlc-android/res/drawable-ldpi/ic_no_song.png            | Bin 324 -> 420 bytes
 vlc-android/res/drawable-mdpi/ic_no_song.png            | Bin 337 -> 503 bytes
 vlc-android/res/drawable-xhdpi/ic_no_song.png           | Bin 587 -> 703 bytes
 .../org/videolan/vlc/gui/helpers/AsyncImageLoader.java  |   2 +-
 6 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/assets/images/svg/ic_no_song.svg b/assets/images/svg/ic_no_song.svg
index 5bf4761..138eafc 100644
--- a/assets/images/svg/ic_no_song.svg
+++ b/assets/images/svg/ic_no_song.svg
@@ -73,9 +73,10 @@
      id="layer1"
      transform="translate(0,-1028.3622)">
     <path
-       style="fill:#bdbdbd;fill-opacity:1;stroke:none"
-       d="M 13 4 C 12.44772 4 12.02399 4.4651625 12 5.0390625 L 12 14.40625 A 3 3 0 0 0 10.5 14 A 3 3 0 0 0 7.5 17 A 3 3 0 0 0 10.5 20 A 3 3 0 0 0 13.5 17 L 13.5 7 L 15.5 7 C 16.05228 7 16.5 6.5523 16.5 6 L 16.5 4 L 13.5 4 L 13 4 z "
-       transform="translate(0,1028.3622)"
-       id="path7615" />
+       style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#bdbdbd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+       d="m 17.75,1032.3628 c -2.87091,1.2764 -5.54576,2.4607 -8.25781,3.6699 -0.74219,0.331 -0.74219,1.3301 -0.74219,1.3301 l 0,6.5156 c -0.083,-0.01 -0.16644,-0.015 -0.25,-0.016 -1.24264,0 -2.25,1.0074 -2.25,2.25 0,1.2427 1.00736,2.25 2.25,2.25 1.24264,0 2.25,-1.0073 2.25,-2.25 l 0,-7.75 5,-2 0,5.7656 c -0.083,-0.01 -0.16644,-0.015 -0.25,-0.016 -1.24264,0 -2.25,1.0074 -2.25,2.25 0,1.2427 1.00736,2.25 2.25,2.25 1.24264,0 2.25,-1.0073 2.25,-2.25 l 0,-12 z"
+       id="path7165"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscccsssccccssscc" />
   </g>
 </svg>
diff --git a/vlc-android/res/drawable-hdpi/ic_no_song.png b/vlc-android/res/drawable-hdpi/ic_no_song.png
index e91a05f..07a14d2 100644
Binary files a/vlc-android/res/drawable-hdpi/ic_no_song.png and b/vlc-android/res/drawable-hdpi/ic_no_song.png differ
diff --git a/vlc-android/res/drawable-ldpi/ic_no_song.png b/vlc-android/res/drawable-ldpi/ic_no_song.png
index cb8c741..c474655 100644
Binary files a/vlc-android/res/drawable-ldpi/ic_no_song.png and b/vlc-android/res/drawable-ldpi/ic_no_song.png differ
diff --git a/vlc-android/res/drawable-mdpi/ic_no_song.png b/vlc-android/res/drawable-mdpi/ic_no_song.png
index f51aa85..222abe2 100644
Binary files a/vlc-android/res/drawable-mdpi/ic_no_song.png and b/vlc-android/res/drawable-mdpi/ic_no_song.png differ
diff --git a/vlc-android/res/drawable-xhdpi/ic_no_song.png b/vlc-android/res/drawable-xhdpi/ic_no_song.png
index 93901e7..31363e3 100644
Binary files a/vlc-android/res/drawable-xhdpi/ic_no_song.png and b/vlc-android/res/drawable-xhdpi/ic_no_song.png differ
diff --git a/vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java b/vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
index 030a97c..b7c0d46 100644
--- a/vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
+++ b/vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
@@ -59,7 +59,7 @@ public class AsyncImageLoader {
 
     public static final Bitmap DEFAULT_COVER_VIDEO = BitmapCache.getFromResource(VLCApplication.getAppResources(), R.drawable.ic_no_thumbnail_1610);
     public static final BitmapDrawable DEFAULT_COVER_VIDEO_DRAWABLE = new BitmapDrawable(VLCApplication.getAppResources(), DEFAULT_COVER_VIDEO);
-    public static final Bitmap DEFAULT_COVER_AUDIO = BitmapCache.getFromResource(VLCApplication.getAppResources(), R.drawable.ic_browser_audio_normal);
+    public static final Bitmap DEFAULT_COVER_AUDIO = BitmapCache.getFromResource(VLCApplication.getAppResources(), R.drawable.ic_no_song);
     public static final BitmapDrawable DEFAULT_COVER_AUDIO_DRAWABLE = new BitmapDrawable(VLCApplication.getAppResources(), DEFAULT_COVER_AUDIO);
     public static final BitmapDrawable DEFAULT_COVER_ARTIST_DRAWABLE = new BitmapDrawable(VLCApplication.getAppResources(), BitmapCache.getFromResource(VLCApplication.getAppResources(), R.drawable.ic_no_artist));
     public static final BitmapDrawable DEFAULT_COVER_ALBUM_DRAWABLE = new BitmapDrawable(VLCApplication.getAppResources(), BitmapCache.getFromResource(VLCApplication.getAppResources(), R.drawable.ic_no_album));



More information about the Android mailing list