如何将图库图像(用户图像)添加到可绘制文件夹?

时间:2015-08-18 03:55:32

标签: android android-drawable

所以我想将用户图库中的图像存储到我的可绘制文件夹中,但我不知道该怎么做?有人可以帮助我!我有图像的路径,但我想成为我的drawable文件夹中的文件。

感谢。

private void grabImage()
{
    Intent imageGetter = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    startActivityForResult(imageGetter, RESULT_LOAD_IMAGE);

}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
    super.onActivityResult(requestCode, resultCode, data);
    if(requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data)
    {
        Uri selectedImage = data.getData();
        String[] filePathColumn = {MediaStore.Images.Media.DATA};//Array size of 1, and we put in a string
        Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null);
        cursor.moveToFirst();
        int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
        user_image_path = cursor.getString(columnIndex);//here we have our image path.
        cursor.close();
        ImageView imageView = (ImageView) findViewById(R.id.imageView);
        imageView.setImageBitmap(BitmapFactory.decodeFile(user_image_path));
    }

    //Sending our images.
    sendInformation.putExtra("imagePath", user_image_path);

}

因此,在我抓取图像并发送之后,我还想知道如何将该图像路径字符串转换为我总能引用的Drawable文件。这是一个非常长的故事,为什么我想这样做,但这正是我必须要做的:/。如果有人可以提供令人惊奇的示例代码!

1 个答案:

答案 0 :(得分:0)

可绘制文件夹在您的apk中编译,无法在运行时修改。如果您要存储图像,可以随时使用应用程序的沙箱目录(即/ data / data / application_package)。此处存储的文件不会在没有root权限的图库或任何其他资源管理器中列出。