Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Casanowow Life for love
VLC-Android
Commits
1df97042
Commit
1df97042
authored
Apr 03, 2012
by
Sébastien Toque
Browse files
Use orange instead of red
parent
255db4d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
vlc-android/src/org/videolan/vlc/gui/audio/AudioSongsListAdapter.java
View file @
1df97042
...
...
@@ -77,7 +77,7 @@ public class AudioSongsListAdapter extends ArrayAdapter<Media> {
Media
media
=
getItem
(
position
);
holder
.
title
.
setText
(
media
.
getTitle
());
holder
.
title
.
setTextColor
(
mCurrentIndex
==
position
?
Color
.
RED
:
Color
.
WHITE
);
holder
.
title
.
setTextColor
(
mCurrentIndex
==
position
?
0xFFF48B00
/* ORANGE */
:
Color
.
WHITE
);
holder
.
artist
.
setText
(
media
.
getArtist
()
+
" - "
+
media
.
getAlbum
());
return
v
;
}
...
...
vlc-android/src/org/videolan/vlc/gui/video/VideoListAdapter.java
View file @
1df97042
...
...
@@ -144,7 +144,7 @@ public class VideoListAdapter extends ArrayAdapter<Media>
holder
.
thumbnail
.
setImageBitmap
(
thumbnail
);
}
holder
.
title
.
setTextColor
(
media
.
getLocation
().
equals
(
mLastMRL
)
?
Color
.
RED
:
Color
.
WHITE
);
holder
.
title
.
setTextColor
(
media
.
getLocation
().
equals
(
mLastMRL
)
?
0xFFF48B00
/* ORANGE */
:
Color
.
WHITE
);
holder
.
more
.
setTag
(
media
);
holder
.
more
.
setOnClickListener
(
moreClickListener
);
...
...
Write
Preview
Supports
Markdown
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