在清单中,我们可以将URL设置为Trusted Web activity。但是,如何通过将URL发送到Trusted Web活动来从我们的活动中打开?
答案 0 :(得分:0)
“如何通过将URL发送到“受信任的网络活动”来从我们的活动中打开”:对于仍在寻找答案的用户-请在此处查看我的帖子:https://stackoverflow.com/a/58069713/8818281
简而言之:
Intent intent = new Intent(this, com.google.androidbrowserhelper.trusted.LauncherActivity.class);
intent.setData(Uri.parse("ANOTHER_SITE_URL"));
startActivity(intent);