安装的应用程序没有打开意图

时间:2018-05-18 16:06:42

标签: android android-instant-apps

我有一个带有两个不同网址功能的即时应用。 从android studio启动example.com/A,这段代码运行良好,活动B(或功能B)打开。

        Intent intent = new Intent(Intent.ACTION_VIEW,
                Uri.parse("https://example.com/id/"+mIds.get(mPager.getCurrentItem())));
        intent.setPackage(getPackageName());
        intent.addCategory(Intent.CATEGORY_BROWSABLE);
        startActivity(intent);

但是运行已安装的应用程序,当我按下相同的按钮时,我收到错误:

     android.content.ActivityNotFoundException: No Activity found to handle Intent 
{ act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] 
dat=https://example.com/... pkg=com.example.myapp }

有什么想法吗?

0 个答案:

没有答案