Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

intent- setaction FOR FILES

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);
Source by www.tabnine.com #
 
PREVIOUS NEXT
Tagged: #setaction #FOR #FILES
ADD COMMENT
Topic
Name
5+7 =