Search code examples
javaandroidshare-intent

Change default photo picker intent text?


Photo picker intent:

        Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
        photoPickerIntent.setType("image/*");
        startActivityForResult(photoPickerIntent, SELECT_PHOTO);

The text, shown below, currently says "Complete action using Photos". Is there a way to change this to something custom?

enter image description here


Solution

  • It's simple. The answer is No. Also in won't always be "with Photos", it will depend on most used(or recent) app for this kind of Action.

    Lil update

    You can use some other way of doing this.

    Intent.createChooser(yourIntent, "Open via ..." /*your text goes here*/)
    

    This will look differently, but will have your text

    Use like this

     this.startActivity(Intent.createChooser(emailIntent, "Send mail via ..."));