HomeSort by relevance Sort by last modified time
    Searched refs:posterArt (Results 1 - 5 of 5) sorted by null

  /packages/apps/TV/src/com/android/tv/
MediaSessionWrapper.java 151 String cardTitleText, @Nullable Bitmap posterArt, @Nullable String posterArtUri) {
152 if (posterArt != null) {
153 updateMediaMetadata(cardTitleText, posterArt);
163 private void updateMediaMetadata(final String title, final Bitmap posterArt) {
169 if (posterArt != null) {
170 builder.putBitmap(MediaMetadata.METADATA_KEY_ART, posterArt);
184 Bitmap posterArt =
186 if (posterArt != null) {
187 builder.putBitmap(MediaMetadata.METADATA_KEY_ART, posterArt);
210 public void onBitmapLoaded(MediaSessionWrapper sessionWrapper, @Nullable Bitmap posterArt) {
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DvrPlaybackMediaSessionHelper.java 196 @Nullable Bitmap posterArt, @Nullable String posterArtUri) {
197 if (posterArt != null) {
198 updateMetadataImageInfo(program, currentMetadata, posterArt, 0);
221 public void onBitmapLoaded(Activity activity, @Nullable Bitmap posterArt) {
223 updatePosterArt(mRecordedProgram, mCurrentMetadata, posterArt, null);
243 final MediaMetadata currentMetadata, final Bitmap posterArt, final int imageResId) {
244 if (mMediaSession != null && (posterArt != null || imageResId != 0)) {
246 if (posterArt != null) {
247 builder.putBitmap(MediaMetadata.METADATA_KEY_ART, posterArt);
  /packages/apps/TV/src/com/android/tv/menu/
ChannelCardView.java 148 public void onBitmapLoaded(ChannelCardView cardView, @Nullable Bitmap posterArt) {
149 if (posterArt == null || cardView.mProgram == null
154 cardView.updatePosterArt(posterArt);
171 private void updatePosterArt(Bitmap posterArt) {
172 mImageView.setImageBitmap(posterArt);
  /packages/apps/TV/src/com/android/tv/guide/
ProgramTableAdapter.java     [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java     [all...]

Completed in 1218 milliseconds