android - 如何创建包含 SD 卡上特定文件夹图像的自定义图库?

标签 android gallery thumbnails

我看过android的API演示(/ApiDemos/src/com/example/android/apis/view/Gallery1.java),但他们从项目内的res文件夹中获取图像。我想创建一个放在文件夹中的图像库: /mnt/sdcard/Android/data/com.myapp/files/Pictures/

我能想到的就是这段代码,我想它会显示所有图像。

public class ExistingPicGallery extends Activity {

private Cursor cursor;
private int columnIndex;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.gallery1);
    Gallery g=(Gallery)findViewById(R.id.gallery1);
    String[] projection = {MediaStore.Images.ImageColumns._ID,MediaStore.Images.Thumbnails.IMAGE_ID, 
            MediaStore.Images.Thumbnails.KIND};
    // Create the cursor pointing to the SDCard
    String selection = MediaStore.Images.Thumbnails.KIND +
            "="  + // Select only mini's 
                            MediaStore.Images.Thumbnails.MINI_KIND; 
    cursor = managedQuery( MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
            projection, 
            selection,
            null,
            null);
    // Get the column index of the image ID
    columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media._ID);
    g.setAdapter(new ImageAdapter(this));

    g.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView parent, View v, int position, long id) {
            Toast.makeText(ExistingPicGallery.this, "" + position, Toast.LENGTH_SHORT).show();
        }
    });

}



 public class ImageAdapter extends BaseAdapter {

     int mGalleryItemBackground;

      public ImageAdapter(Context c) {
            context = c;

            TypedArray a = obtainStyledAttributes(R.styleable.ExistingPicGallery);
            mGalleryItemBackground = a.getResourceId(
                    R.styleable.ExistingPicGallery_android_galleryItemBackground, 0);
            a.recycle();
        }

        public int getCount() {
            return cursor.getCount();
        }

        public Object getItem(int position) {
            return position;
        }

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

        public View getView(int position, View convertView, ViewGroup parent) {
            ImageView i = new ImageView(context);
            // 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);
            i.setLayoutParams(new Gallery.LayoutParams(150, 100));
            i.setScaleType(ImageView.ScaleType.FIT_XY);
            i.setBackgroundResource(0);
            return i;
        }

        private Context context;


        ;
    }
}

我花了很多时间寻找它的解决方案,但没有成功..

最佳答案

我在/ApiDemos/src/com/example/android/apis/view/Gallery1.java 中进行了以下更改

public class ImageAdapter extends BaseAdapter {
    int mGalleryItemBackground;

    public ImageAdapter(Context c) {
        mContext = c;

    }

    public int getCount() {
        return allFiles.length;
    }

    public Object getItem(int position) {
        return position;
    }

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

    public View getView(final int position, View convertView,
            ViewGroup parent) {

        ImageView myImageView = new ImageView(mContext);

        if (convertView != null)
            myImageView = (ImageView) convertView;
        else {
            myImageView = new ImageView(mContext);
            myImageView.setLayoutParams(new GridView.LayoutParams(60, 60));
            myImageView.setAdjustViewBounds(false);
            myImageView.setScaleType(ImageView.ScaleType.CENTER_CROP);

        }

        Bitmap bitmapImage = BitmapFactory.decodeFile(folder + "/"
                + allFiles[position]);
        BitmapDrawable drawableImage = new BitmapDrawable(bitmapImage);
        myImageView.setImageDrawable(drawableImage);

        return myImageView;

    }

    private Context mContext;

    File folder = new File(
            Environment.getExternalStorageDirectory()
            .getPath()+"/files/Pictures/");
            String[] allFiles = folder.list();


}

因此,我们在此文件夹中获得图像名称数组。在示例中,我们获取了可绘制对象的 ID 数组。

关于android - 如何创建包含 SD 卡上特定文件夹图像的自定义图库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8619429/

相关文章:

objective-c - 使用带有 ARC 的 AVAssetImageGenerator 创建大量缩略图时出现问题

android - 具有重力和权重的 LinearLayout

android - 使用 Android Studio 生成 Google Endpoints 库 (JDO)

java - getMap() 方法可能返回 null?

android - 防止用户操纵将存储在 Android 本地数据库中的时间?

android - 保存到 sd 卡的图像不会出现在 Android 图库应用中

javascript - BlueImp jQuery 文件上传缩略图预览改进

css - 我正在制作一个响应式网站,需要将图像放在使用 css3 动画的 div 中

android - 如何从图库中获取图像的图像格式

facebook - 当我将链接粘贴到帖子/状态/评论中时,如何让 Facebook 显示我网站的 Logo ?