我正在开发一个应用程序,其中我只想向用户显示apk文件,因此他只能从文件管理器中选择.apk文件。我找到了几个答案,但休息对我没用。我尝试了intent.setType(" application / vnd.android.package-archive"事实上,我甚至无法将用户限制为仅限于图像。 这是我的代码
private void showFileChooser() {
Intent intent = new Intent();
//sets the select file to all types of files
intent.setType("application/vnd.android.package-archive");
//allows to select data and return it
intent.setAction(Intent.ACTION_GET_CONTENT);
//starts new activity to select file and return data
startActivityForResult(Intent.createChooser(intent, "Choose File to Upload.."), PICK_FILE_REQUEST);
}