Home
last modified time | relevance | path

Searched refs:detailsContent (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DDvrDetailsFragment.java106 protected void setDetailsOverviewRow(DetailsContent detailsContent) { in setDetailsOverviewRow() argument
107 mDetailsOverview = new DetailsOverviewRow(detailsContent); in setDetailsOverviewRow()
110 onLoadLogoAndBackgroundImages(detailsContent); in setDetailsOverviewRow()
152 protected void onLoadLogoAndBackgroundImages(DetailsContent detailsContent) { in onLoadLogoAndBackgroundImages() argument
155 if (TextUtils.isEmpty(detailsContent.getLogoImageUri())) { in onLoadLogoAndBackgroundImages()
160 if (TextUtils.isEmpty(detailsContent.getBackgroundImageUri())) { in onLoadLogoAndBackgroundImages()
170 && detailsContent in onLoadLogoAndBackgroundImages()
172 .equals(detailsContent.getBackgroundImageUri())) { in onLoadLogoAndBackgroundImages()
175 detailsContent.getLogoImageUri(), in onLoadLogoAndBackgroundImages()
186 detailsContent.getLogoImageUri(), in onLoadLogoAndBackgroundImages()
[all …]
DDetailsContentPresenter.java279 final DetailsContent detailsContent = (DetailsContent) item; in onBindViewHolder() local
285 if (TextUtils.isEmpty(detailsContent.getTitle())) { in onBindViewHolder()
289 vh.mTitle.setText(detailsContent.getTitle()); in onBindViewHolder()
301 if (detailsContent.getStartTimeUtcMillis() != DetailsContent.INVALID_TIME in onBindViewHolder()
302 && detailsContent.getEndTimeUtcMillis() != DetailsContent.INVALID_TIME) { in onBindViewHolder()
306 detailsContent.getStartTimeUtcMillis(), in onBindViewHolder()
307 detailsContent.getEndTimeUtcMillis(), in onBindViewHolder()
324 if (TextUtils.isEmpty(detailsContent.getDescription())) { in onBindViewHolder()
327 if (detailsContent.shouldShowErrorMessage()) { in onBindViewHolder()
330 vh.mBody.setText(detailsContent.getDescription()); in onBindViewHolder()
DDetailsContent.java357 DetailsContent detailsContent = new DetailsContent(); in build() local
358 detailsContent.copyFrom(mDetailsContent); in build()
359 return detailsContent; in build()
/packages/apps/TV/src/com/android/tv/ui/
DProgramDetailsFragment.java126 protected void setDetailsOverviewRow(DetailsContent detailsContent) { in setDetailsOverviewRow() argument
127 mDetailsOverview = new DetailsOverviewRow(detailsContent); in setDetailsOverviewRow()
130 onLoadLogoAndBackgroundImages(detailsContent); in setDetailsOverviewRow()
246 protected void onLoadLogoAndBackgroundImages(DetailsContent detailsContent) {
249 if (TextUtils.isEmpty(detailsContent.getLogoImageUri())) {
254 if (TextUtils.isEmpty(detailsContent.getBackgroundImageUri())) {
264 && detailsContent
266 .equals(detailsContent.getBackgroundImageUri())) {
269 detailsContent.getLogoImageUri(),
280 detailsContent.getLogoImageUri(),
[all …]