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

  /frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/
PhotoItem.java 21 public class PhotoItem implements Parcelable {
26 public PhotoItem(String title, long id) {
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) {
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
PhotoItem.java 21 public class PhotoItem implements Parcelable {
26 public PhotoItem(String title, int imageResourceId) {
30 public PhotoItem(String title, String content, int imageResourceId) {
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(Parcel in)
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
PhotoItem.java 19 public class PhotoItem implements Parcelable {
25 public PhotoItem(String title, int imageResourceId) {
29 public PhotoItem(String title, int imageResourceId, int id) {
34 public PhotoItem(String title, String content, int imageResourceId) {
42 public PhotoItem(String title, String content, int imageResourceId, int id) {
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[] newArray(int size)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
PhotoItem.java 49 public class PhotoItem extends FilmstripItemBase<FilmstripItemData> {
50 private static final Log.Tag TAG = new Log.Tag("PhotoItem");
68 public PhotoItem(Context context, GlideFilmstripManager manager, FilmstripItemData data,
87 return "PhotoItem: " + mData.toString();

Completed in 95 milliseconds