我有一个带有两个不同网址功能的即时应用。 从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 }
有什么想法吗?