HomeSort by relevance Sort by last modified time
    Searched defs:posterArtUri (Results 1 - 7 of 7) sorted by null

  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/playback/
WatchNextAdapter.java 80 Uri posterArtUri = Uri.parse(movie.getCardImageUrl());
91 .setPosterArtUri(posterArtUri)
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
ChannelXMLParser.java 169 String posterArtUri = null;
177 posterArtUri = value;
196 return new ProgramInfo(title, posterArtUri, description, durationSec,
RichTvInputService.java 453 public final String posterArtUri;
461 public ProgramInfo(String title, String posterArtUri, String description, long durationSec,
464 this.posterArtUri = posterArtUri;
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/
SyncProgramsJobService.java 202 Uri posterArtUri = Uri.parse(movie.getCardImageUrl());
211 .setPosterArtUri(posterArtUri)
  /packages/apps/TV/src/com/android/tv/
MediaSessionWrapper.java 131 String posterArtUri = null;
134 posterArtUri = currentProgram.getPosterArtUri();
140 if (posterArtUri == null) {
141 posterArtUri = TvContract.buildChannelLogoUri(currentChannel.getId()).toString();
143 updatePosterArt(currentChannel, currentProgram, cardTitleText, null, posterArtUri);
173 @Nullable String posterArtUri) {
176 } else if (posterArtUri != null) {
179 posterArtUri,
  /packages/apps/TV/tests/common/src/com/android/tv/testing/data/
ProgramInfo.java 99 public final String posterArtUri;
129 String posterArtUri,
139 this.posterArtUri = posterArtUri;
202 && !GEN_POSTER.equals(posterArtUri)
212 GEN_POSTER.equals(posterArtUri)
215 : posterArtUri,
248 && Objects.equals(posterArtUri, that.posterArtUri)
292 public Builder setPosterArtUri(String posterArtUri) {
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DvrPlaybackMediaSessionHelper.java 189 String posterArtUri = program.getPosterArtUri();
190 if (posterArtUri == null) {
191 posterArtUri = TvContract.buildChannelLogoUri(program.getChannelId()).toString();
193 updatePosterArt(program, currentMetadata, null, posterArtUri);
201 @Nullable String posterArtUri) {
204 } else if (posterArtUri != null) {
207 posterArtUri,

Completed in 473 milliseconds