I want to show a file collector to open an image with this code:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "choose from"), PICK_FROM_FILE);
How to change the font and gravity of the file header ("choose from")?
source
share