javaandroidstartactivityforresult

Alternative for startActivityForResult


I am trying to get the image using picasso . Since startActivityForResult is depreciated I need to migrate to the new API . Code is as follows .

 private void openFileChooser() {
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(intent, PICK_IMAGE_REQUEST);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK
            && data != null && data.getData() != null) {
        mImageUri = data.getData();
        Picasso.get().load(mImageUri).into(productImage);
    }
}

Solution

  • Here is how you migrate to the new Api .

    Step 1 : Declare a top variable in your class for getting image from the Gallery

    ActivityResultLauncher<String> mGetContent = registerForActivityResult(new GetContent(),
        new ActivityResultCallback<Uri>() {
            @Override
            public void onActivityResult(Uri uri) {
                //You are provided with uri of the image . Take this uri and assign it to Picasso
            }
    });
    

    Step 2 : Now in your OnCreate , set a onClickListener on your button via which you want the user to go to the Gallery and launch the contract in the following manner :

    
        selectButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {
                // Pass in the mime type you'd like to allow the user to select
                // as the input
                mGetContent.launch("image/*");
            }
        });
    

    Comment below if you face any errors