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

  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DetailsContentPresenter.java 276 final DetailsContent detailsContent = (DetailsContent) item;
282 if (TextUtils.isEmpty(detailsContent.getTitle())) {
286 vh.mTitle.setText(detailsContent.getTitle());
298 if (detailsContent.getStartTimeUtcMillis() != DetailsContent.INVALID_TIME
299 && detailsContent.getEndTimeUtcMillis() != DetailsContent.INVALID_TIME) {
303 detailsContent.getStartTimeUtcMillis()
    [all...]
DvrDetailsFragment.java 104 protected void setDetailsOverviewRow(DetailsContent detailsContent) {
105 mDetailsOverview = new DetailsOverviewRow(detailsContent);
108 onLoadLogoAndBackgroundImages(detailsContent);
150 protected void onLoadLogoAndBackgroundImages(DetailsContent detailsContent) {
153 if (TextUtils.isEmpty(detailsContent.getLogoImageUri())) {
158 if (TextUtils.isEmpty(detailsContent.getBackgroundImageUri())) {
168 && detailsContent
170 .equals(detailsContent.getBackgroundImageUri()))
    [all...]
DetailsContent.java 32 class DetailsContent {
44 static DetailsContent createFromRecordedProgram(
46 return new DetailsContent.Builder()
62 static DetailsContent createFromSeriesRecording(
64 return new DetailsContent.Builder()
76 static DetailsContent createFromScheduledRecording(
89 return new DetailsContent.Builder()
102 static DetailsContent createFromFailedScheduledRecording(
122 return new DetailsContent.Builder()
135 private DetailsContent() {}
    [all...]

Completed in 67 milliseconds