在 Android 上选择文件后出现打开方式对话框 10

Open with dialog appears after choosing a file on Android 10

将我的 phone(Redmi 7a pie) 升级到 android 10 后,使用文件选择器选择文件时有时会出现打开对话框

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
if (intent.resolveActivity(getPackageManager()) != null) {
   startActivityForResult(Intent.createChooser(intent,null), 1);
}`

我也试过“ACTION_OPEN_DOCUMENT”

你知道如何解决这个问题吗?

谢谢

编辑:来自@Rinkal Patel 的解决方案“ACTION_PICK” 非常有限

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
if (intent.resolveActivity(getPackageManager()) != null) {
    startActivityForResult(Intent.createChooser(intent,null), 1);
}