怎么看内存的图片

时间:2013-04-11 19:31:42

标签: android

我正在创建一个“隐藏图片”应用程序,它将选定的图片从图库复制到应用程序内存。它完美地工作并将图像成功地从库复制到应用程序存储位置/data/data/com.isummation.customgallery/files/,并在ListView中显示已保存的图片。但是,我想在文件夹视图中显示图像,如下图所示:

enter image description here

我能做些什么来达到这个效果?

1 个答案:

答案 0 :(得分:0)

试试这个:

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(
        Intent.createChooser(intent, "Select Picture"),
        SELECT_PICTURE);



@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (requestCode) {
        case SELECT_PICTURE: {
            if (resultCode == RESULT_OK) {
                Uri selectedImageUri = data.getData();
                mCurrentPhotoPath = getPath(selectedImageUri);
                handlePhotoSelected();
            }
            break;
        } // SELECT_PICTURE

        } // switch
    }