I use the following code to select a file, but I can only select one file. How to select more than one file.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); startActivityForResult(intent, CHOOSE_FILE_RESULT_CODE); ..... public void onActivityResult(int requestCode, int resultCode, Intent data) {
thank u
source share