不确定为什么每当我通过intent调用默认文件管理器时,列表中都有一个“Package Installer”,选择它会弹出并出现“解析包时出现问题”。
截图:
我正在使用此代码btw
intent = new Intent();
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setData(Uri.parse("file://" + mRecorder.getRecordDir()));
startActivity(intent);
答案 0 :(得分:2)
您对Intent
没有任何操作。如果您打算使用隐式Intents
,请提供一个操作。
每当我通过意图
调用默认文件管理器时
首先,正如Stratton先生在评论中指出的那样,Android中没有“默认文件管理器”。
其次,我不知道为什么你认为Intent
会在任何情况下提出“默认文件管理器”。