Android中调用文件管理器进行选择文件(记录)

一、打开系统自带的文件管理器html /** * 打开本地文件器 */ private void openFileSelector() { Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("*/*");//设置类型,我这里是任意类型,任意后缀的能够这样写。 intent.addC
相关文章
相关标签/搜索