Back to project page TuxPuz.
The source code is released under:
GNU General Public License
If you think the Android project TuxPuz 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.CustomizedClasses.pkh; /*from w w w .j a v a 2 s .c o m*/ import android.graphics.Bitmap; public class CustomizeArrayList { Bitmap bitmap; int imageID; public void setBitmap(Bitmap bitmap) { this.bitmap = bitmap; } public void setImageID(int imageID) { this.imageID = imageID; } public Bitmap getBitmap() { return bitmap; } public int getImageID() { return imageID; } }