Как заполнить галерею миниатюрами из папки с изображениями (* .jpg)? - PullRequest
1 голос
/ 11 октября 2011

Это мой код, который я использую, чтобы заполнить мою галерею thumnails.

//--------------------------------------------
        final Cursor cursor;
        final int columnIndex;

        Gallery g = (Gallery) findViewById(R.id.gallery);
        // request only the image ID to be returned
        String[] projection = {MediaStore.Images.Media._ID};
        // Create the cursor pointing to the SDCard

        cursor = managedQuery(
                //uu.build(),
                MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                projection, 
                MediaStore.Images.Media.DATA + " like ? ",
                new String[] {"%MyIdentityPhotos%"},  
                null);
        cursor.moveToFirst();
        // Get the column index of the image ID
        columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media._ID);

        g.setAdapter(new BaseAdapter() {
            public int getCount() {
              return cursor.getCount();
            }
            public Object getItem(int position) {

                // Move cursor to current position
                cursor.moveToPosition(position);
                // Get the current value for the requested column
                int imageID = cursor.getInt(columnIndex);
                // obtain the image URI
                Uri uri = Uri.withAppendedPath( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, Integer.toString(imageID) );
                String url = uri.toString();
                // Set the content of the image based on the image URI
                int originalImageId = Integer.parseInt(url.substring(url.lastIndexOf("/") + 1, url.length()));
                return MediaStore.Images.Thumbnails.getThumbnail(getContentResolver(),
                                originalImageId, MediaStore.Images.Thumbnails.MINI_KIND, null);

            }

            public long getItemId(int position) {
              return position;
            }

            public View getView(int position, View convertView, ViewGroup parent) {
                ImageView i = new ImageView(ImViewer.this);
                // Move cursor to current position
                cursor.moveToPosition(position);
                // Get the current value for the requested column
                int imageID = cursor.getInt(columnIndex);
                // obtain the image URI
                Uri uri = Uri.withAppendedPath( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, Integer.toString(imageID) );
                String url = uri.toString();
                // Set the content of the image based on the image URI
                int originalImageId = Integer.parseInt(url.substring(url.lastIndexOf("/") + 1, url.length()));
                Bitmap b = MediaStore.Images.Thumbnails.getThumbnail(getContentResolver(),
                                originalImageId, MediaStore.Images.Thumbnails.MINI_KIND, null);
                i.setImageBitmap(b);

                Display display = getWindowManager().getDefaultDisplay(); 
                int width = display.getWidth();
                //int height = display.getHeight();

                i.setLayoutParams(new Gallery.LayoutParams(width, (int) (width / 0.77) ));
                i.setScaleType(ImageView.ScaleType.CENTER_CROP );
                //i.setBackgroundResource(mGalleryItemBackground);
                return i;
            }

          });
        //--------------------------------------------

Это не нормально для меня, потому что это возвращает только изображения, которые находятся в Android, встроенном в галерею.

Whatr я ищу, чтобы сделать то же самое, но с использованием определенной папки.

Заранее спасибо

...