Say i want to upload a picture or a text document
when i click on the button to chose the file
how do i make it so that it shows a bunch a popup of applications i can chose from to look at files and select on for the upload as in this picture
i currently have this
public void sendFile(View view) {
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.setType("*/*");
startActivityForResult(intent, READ_REQUEST_CODE);
}
but this goes straight to documents and doesn't let me choose an application like gallery or MEGA
any idea on how to implement this?