Back to project page android-002.
The source code is released under:
Apache License
If you think the Android project android-002 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 com.michaelfitzmaurice.dailyselfie; // w ww . j a v a2 s . com import java.io.File; import android.graphics.Bitmap; public class SelfieRecord { private Bitmap thumbnail; private File fullImageFile; public SelfieRecord(Bitmap thumbnail, File fullImageFile) { super(); this.thumbnail = thumbnail; this.fullImageFile = fullImageFile; } public Bitmap getThumbnail() { return thumbnail; } public File getFullImageFile() { return fullImageFile; } }