Listing thumbnails per bucket
I have 2 classes. First is meant for searching for all folders, I mean Bucket list name. Seconds class makes thumbnails. But I need to have thumbnails per bucket. So when I push on my folder it should shows me all photos in it (thumbnails). Can somebody help me with it? First class: public class ThumbnailAdapter extends BaseAdapter { // Context required for performing queries private final Context mContext; // Cursor for thumbnails private final Cursor cursor; private final int imgId; private final int imgData; private final int count; public ThumbnailAdapter(Context c) { this.mContext = c; //