how to get the images from device in android java application

后端 未结 1 1426
时光说笑
时光说笑 2020-12-02 15:01

In my application I want to upload the image.

For that I have to get images from gallery in android device.

How do I write code that accomplishes this?

相关标签:
1条回答
  • 2020-12-02 15:28

    Raise an Intent with Action as ACTION_GET_CONTENT and set the type to "image/*". This will start the photo picker Activity. When the user selects an image, you can use the onActivityResult callback to get the results.

    Something like:

    Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT);
    photoPickerIntent.setType("image/*");
    startActivityForResult(photoPickerIntent, 1);
    
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
        super.onActivityResult(requestCode, resultCode, data);
        if (resultCode == RESULT_OK)
        {
            Uri chosenImageUri = data.getData();
    
            Bitmap mBitmap = null;
            mBitmap = Media.getBitmap(this.getContentResolver(), chosenImageUri);
            }
    }
    
    0 讨论(0)
提交回复
热议问题