aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChulwoo Lee <chulwoo@google.com>2014-08-05 18:19:26 +0900
committerChulwoo Lee <chulwoo@google.com>2014-08-05 19:47:08 +0900
commitd2f225ac4f8a4604e1799cd289be722aa3476c33 (patch)
treed2ea4bfd57b9914d2eed8f236c621f0450d55527 /src
parent6a5abb14996863d2668768422ce07976005f1904 (diff)
downloadTV-d2f225ac4f8a4604e1799cd289be722aa3476c33.tar.gz
Adjust color on TV app
BUG: 16652362 Change-Id: If184fd19d04e25dc738d266dccbcbc284675cd89
Diffstat (limited to 'src')
-rw-r--r--src/com/android/tv/ui/ChannelTileView.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/tv/ui/ChannelTileView.java b/src/com/android/tv/ui/ChannelTileView.java
index 41be9072..6e755071 100644
--- a/src/com/android/tv/ui/ChannelTileView.java
+++ b/src/com/android/tv/ui/ChannelTileView.java
@@ -99,13 +99,14 @@ public class ChannelTileView extends ShadowContainer
setTag(MainMenuView.MenuTag.buildTag(mChannel));
if (mChannel.getType() == R.integer.channel_type_guide) {
- mChannelInfosLayout.setBackground(mNormalBackgroud);
+ mChannelInfosLayout.setBackgroundResource(R.drawable.channel_tile_guide_top);
mChannelNumberView.setVisibility(INVISIBLE);
mChannelNameView.setVisibility(INVISIBLE);
mProgramPosterArtView.setVisibility(INVISIBLE);
mChannelLogoView.setImageResource(R.drawable.ic_channel_guide);
mChannelLogoView.setVisibility(VISIBLE);
mProgramNameView.setText(R.string.menu_program_guide);
+ mProgramNameView.setBackgroundResource(R.drawable.channel_tile_guide_bottom);
} else {
mChannelNumberView.setText(mChannel.getDisplayNumber());
mChannelNumberView.setVisibility(VISIBLE);