Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I an using gridview to display the images, in some devices the thumbnails are not displayed correctly. two images have same thumbnail. is there anything wrong here?

private ArrayList<MediaEntity> getAllImages() {
    ArrayList<MediaEntity> imzList = new ArrayList<MediaEntity>();
    final String[] columns = { MediaStore.Images.Media.DATA,
            MediaStore.Images.Media._ID };
    final String orderBy = MediaStore.Images.Thumbnails._ID;
    Cursor imagecursor = managedQuery(
            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, columns, null,
            null, orderBy);
    int image_column_index = imagecursor
            .getColumnIndex(MediaStore.Images.Media._ID);
    this.count = imagecursor.getCount();
    for (int i = 0; i < this.count; i++) {
        MediaEntity imaze = new MediaEntity();
        imagecursor.moveToPosition(i);
        int id = imagecursor.getInt(image_column_index);
        int dataColumnIndex = imagecursor
                .getColumnIndex(MediaStore.Images.Media.DATA);
        Bitmap thumbBitmap = MediaStore.Images.Thumbnails.getThumbnail(
                getApplicationContext().getContentResolver(), id,
                MediaStore.Images.Thumbnails.MICRO_KIND, null);

        if (thumbBitmap != null) {
                                imaze.setThumbData(MediaUtil.bitmaptoByteArray(thumbBitmap));
            imaze.setThumbnail(thumbBitmap);
        }           
        imaze.setFilePath(imagecursor.getString(dataColumnIndex));
        imzList.add(imaze);
    }
    imagecursor.close();
    return imzList;
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.