安卓通过自带文件管理器选择文件、图片
多图(点击为单图,长按开启多图选择)
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//意图:文件浏览器
intent.setType("image/*");//限制图片限制
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);//多选
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(intent, 1);
单图
Intent intent = new Intent(Intent.ACTION_PICK);//意图:文件浏览器
intent.setType("image/*");//限制图片限制
startActivityForResult(intent, 1);