Merge pull request #618 from soncaokim/NotRecentlyPlayedTweaks

Change the icon of the Not recently played playlist
This commit is contained in:
Eugene 2018-12-03 17:18:08 -05:00 committed by GitHub
commit f1932d05c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -17,7 +17,7 @@ import java.util.ArrayList;
public class NotRecentlyPlayedPlaylist extends AbsSmartPlaylist { public class NotRecentlyPlayedPlaylist extends AbsSmartPlaylist {
public NotRecentlyPlayedPlaylist(@NonNull Context context) { public NotRecentlyPlayedPlaylist(@NonNull Context context) {
super(context.getString(R.string.not_recently_played), R.drawable.ic_library_music_white_24dp); super(context.getString(R.string.not_recently_played), R.drawable.ic_watch_later_white_24dp);
} }
@NonNull @NonNull

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM16.2,16.2L11,13L11,7h1.5v5.2l4.5,2.7 -0.8,1.3z"/>
</vector>