当我尝试使用 action 调用隐式意图时"Intent.ACTION_GET_CONTENT"
,我收到此错误警报"No apps can perform this action."
提前谢谢。请在下面查看我的代码。
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select File"), SELECT_FILE);