【EasyClick】【安卓】打开文件选择器
importClass(android.content.Intent)intent = new Intent(Intent.ACTION_GET_CONTENT)
intent.addCategory(Intent.CATEGORY_OPENABLE)
intent.setType("image/*")
ui.getActivity().startActivityForResult(Intent.createChooser(intent, "选择图片"), 1)
页:
[1]