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

  /packages/apps/TV/src/com/android/tv/dvr/ui/
DetailsContentPresenter.java 219 final DetailsContent detailsContent = (DetailsContent) item;
225 if (TextUtils.isEmpty(detailsContent.getTitle())) {
229 vh.mTitle.setText(detailsContent.getTitle());
238 if (detailsContent.getStartTimeUtcMillis() != DetailsContent.INVALID_TIME
239 && detailsContent.getEndTimeUtcMillis() != DetailsContent.INVALID_TIME) {
241 detailsContent.getStartTimeUtcMillis()
    [all...]
DetailsContent.java 29 public class DetailsContent {
40 private DetailsContent() { }
87 public void copyFrom(DetailsContent other) {
103 private final DetailsContent mDetailsContent;
106 mDetailsContent = new DetailsContent();
201 public DetailsContent build() {
202 DetailsContent detailsContent = new DetailsContent();
203 detailsContent.copyFrom(mDetailsContent)
    [all...]
DvrDetailsFragment.java 114 protected void setDetailsOverviewRow(DetailsContent detailsContent) {
115 mDetailsOverview = new DetailsOverviewRow(detailsContent);
118 onLoadLogoAndBackgroundImages(detailsContent);
188 protected void onLoadLogoAndBackgroundImages(DetailsContent detailsContent) {
191 if (TextUtils.isEmpty(detailsContent.getLogoImageUri())) {
196 if (TextUtils.isEmpty(detailsContent.getBackgroundImageUri())) {
205 && detailsContent.getLogoImageUri().equals(
206 detailsContent.getBackgroundImageUri()))
    [all...]

Completed in 220 milliseconds