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

/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/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, String content, int imageResourceId) { method in class:PhotoItem
63 public static final Parcelable.Creator<PhotoItem> CREATOR
64 = new Parcelable.Creator<PhotoItem>() {
66 public PhotoItem createFromParcel(Parcel in) {
67 return new PhotoItem(in);
71 public PhotoItem[] newArray(int size) {
72 return new PhotoItem[size];
76 private PhotoItem(Parce method in class:PhotoItem
[all...]
/frameworks/support/samples/SupportLeanbackDemos/src/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, String content, int imageResourceId) { method in class:PhotoItem
63 public static final Parcelable.Creator<PhotoItem> CREATOR
64 = new Parcelable.Creator<PhotoItem>() {
66 public PhotoItem createFromParcel(Parcel in) {
67 return new PhotoItem(in);
71 public PhotoItem[] newArray(int size) {
72 return new PhotoItem[size];
76 private PhotoItem(Parce method in class:PhotoItem
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/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...]

Completed in 100 milliseconds