aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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);