Back to project page collage-lwp.
The source code is released under:
Apache License
If you think the Android project collage-lwp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pohkahkong.livewallpaper.collage; /* ww w .j av a2 s . c om*/ import android.graphics.Bitmap; /** * * @author Poh Kah Kong * */ public class ImageItem { private Bitmap thumbnail; private String path; public ImageItem(Bitmap thumbnail, String path) { this.thumbnail = thumbnail; this.path = path; } public Bitmap getThumbnail() { return thumbnail; } public String getPath() { return path; } }