意图打开文件夹

时间:2012-05-20 11:46:58

标签: android android-intent

不确定为什么每当我通过intent调用默认文件管理器时,列表中都有一个“Package Installer”,选择它会弹出并出现“解析包时出现问题”。

截图:

enter image description here

我正在使用此代码btw

intent = new Intent();
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setData(Uri.parse("file://" + mRecorder.getRecordDir()));
startActivity(intent);

1 个答案:

答案 0 :(得分:2)

您对Intent没有任何操作。如果您打算使用隐式Intents,请提供一个操作。

  

每当我通过意图

调用默认文件管理器时

首先,正如Stratton先生在评论中指出的那样,Android中没有“默认文件管理器”。

其次,我不知道为什么你认为Intent会在任何情况下提出“默认文件管理器”。