我正在使用下面的代码从设备中选择文件
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(intent,1212);
上面的代码给出下面的输出
有什么方法可以删除或过滤对话框中显示的应用程序?例如,我想com.android.contacts
从对话框中删除两者。