无法在android pie中使用INTENT_VIEW,它什么也没显示

时间:2019-05-28 07:21:38

标签: java android android-intent actionview

我正在制作一个使用意图通过UPI调用设备中所有应用程序的应用程序。我的代码在Android Pie之前运行良好,但是在android Pie中什么也没显示。

这是我的代码:

    intent.setAction(Intent.ACTION_VIEW);
    intent.setData(Uri.parse(upi_link));
    Intent chooser = Intent.createChooser(intent,getString(R.string.payupitext));
    startActivityForResult(chooser, 1, null);

我想知道我是否必须进行任何更新,我进行了搜索,但未找到任何内容。如果有人可以帮助我,我将非常感激。 谢谢

0 个答案:

没有答案