Can anybody tell me that what is the alternate/ updated option of GALLERY_PICK, because GALLERY_PICK option is not coming in startActivityForResult parameter. I googled it but I'm not getting any solutions. Actually I want to choose images like we do in WhatsApp when we have to send any particualr image from our gallery.
ChatActivity.java
plus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select image"),GALLERY_.....);
}
});
Here, plus is a button in my xml file and I did findviewbyid in ChatActivity.java