编辑
选取文件Intent
本文访问次数:0

代码如下

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");

三星设备需要以下代码

Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA");
intent.putExtra("CONTENT_TYPE", "*/*");
intent.addCategory(Intent.CATEGORY_DEFAULT);

需要输入验证码才能留言

没有任何评论