in documents From manifest we can set URL to Trusted web activity. But how to open from our activity by sending URL to Trusted web activity?
- Can we manipulate click events in trusted web Activity?
in documents From manifest we can set URL to Trusted web activity. But how to open from our activity by sending URL to Trusted web activity?
"how to open from our activity by sending URL to Trusted web activity": for the ones who are still looking for the answer - please see my post here: https://stackoverflow.com/a/58069713/8818281
In short:
Intent intent = new Intent(this, com.google.androidbrowserhelper.trusted.LauncherActivity.class);
intent.setData(Uri.parse("ANOTHER_SITE_URL"));
startActivity(intent);