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

  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
PhotoItem.java 19 public class PhotoItem implements Parcelable {
25 public PhotoItem(String title, int imageResourceId) {
29 public PhotoItem(String title, String content, int imageResourceId) {
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(Parcel in)
    [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 2366 milliseconds