Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-Android
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
316
Issues
316
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-Android
Commits
64b6bfbf
Commit
64b6bfbf
authored
Feb 16, 2017
by
Geoffrey Métais
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use browser icon for audio item without cover
parent
6f6ecb66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
...id/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
+1
-1
No files found.
vlc-android/src/org/videolan/vlc/gui/helpers/AsyncImageLoader.java
View file @
64b6bfbf
...
...
@@ -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_
no_song
);
public
static
final
Bitmap
DEFAULT_COVER_AUDIO
=
BitmapCache
.
getFromResource
(
VLCApplication
.
getAppResources
(),
R
.
drawable
.
ic_
browser_audio_normal
);
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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment