Mr_老冷 发表于 2022-12-4 21:38:10

【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]
查看完整版本: 【EasyClick】【安卓】打开文件选择器