Searched defs:PhotoItem (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/
H A DPhotoItem.java21 public class PhotoItem implements Parcelable { class in inherits:Parcelable
26 public PhotoItem(String title, long id) { method in class:PhotoItem
55 public static final Creator<PhotoItem> CREATOR
56 = new Creator<PhotoItem>() {
58 public PhotoItem createFromParcel(Parcel in) {
59 return new PhotoItem(in);
63 public PhotoItem[] newArray(int size) {
64 return new PhotoItem[size];
68 private PhotoItem(Parcel in) { method in class:PhotoItem
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
H A DPhotoItem.java21 public class PhotoItem implements Parcelable { class in inherits:Parcelable
26 public PhotoItem(String title, int imageResourceId) { method in class:PhotoItem
30 public PhotoItem(String title, String content, int imageResourceId) { method in class:PhotoItem
64 public static final Parcelable.Creator<PhotoItem> CREATOR =
65 new Parcelable.Creator<PhotoItem>() {
67 public PhotoItem createFromParcel(Parcel in) {
68 return new PhotoItem(in);
72 public PhotoItem[] newArray(int size) {
73 return new PhotoItem[size];
77 private PhotoItem(Parce method in class:PhotoItem
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DPhotoItem.java19 public class PhotoItem implements Parcelable { class in inherits:Parcelable
25 public PhotoItem(String title, int imageResourceId) { method in class:PhotoItem
29 public PhotoItem(String title, int imageResourceId, int id) { method in class:PhotoItem
34 public PhotoItem(String title, String content, int imageResourceId) { method in class:PhotoItem
42 public PhotoItem(String title, String content, int imageResourceId, int id) { method in class:PhotoItem
75 public static final Parcelable.Creator<PhotoItem> CREATOR
76 = new Parcelable.Creator<PhotoItem>() {
78 public PhotoItem createFromParcel(Parcel in) {
79 return new PhotoItem(in);
83 public PhotoItem[] newArra
92 private PhotoItem(Parcel in) { method in class:PhotoItem
[all...]
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DPhotoItem.java19 public class PhotoItem implements Parcelable { class in inherits:Parcelable
25 public PhotoItem(String title, int imageResourceId) { method in class:PhotoItem
29 public PhotoItem(String title, int imageResourceId, int id) { method in class:PhotoItem
34 public PhotoItem(String title, String content, int imageResourceId) { method in class:PhotoItem
42 public PhotoItem(String title, String content, int imageResourceId, int id) { method in class:PhotoItem
75 public static final Parcelable.Creator<PhotoItem> CREATOR
76 = new Parcelable.Creator<PhotoItem>() {
78 public PhotoItem createFromParcel(Parcel in) {
79 return new PhotoItem(in);
83 public PhotoItem[] newArra
92 private PhotoItem(Parcel in) { method in class:PhotoItem
[all...]

Completed in 67 milliseconds