package com.linseykate.findingfido; import android.graphics.Bitmap; /** * Taken from http://javatechig.com/android/android-gridview-example-building-image-gallery-in-android * * Image class that holds * bitmap and title */ public class ImageItem { private Bitmap image; private String title; public ImageItem(Bitmap image, String title) { super(); this.image = image; this.title = title; } public Bitmap getImage() { return image; } public void setImage(Bitmap image) { this.image = image; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }