我正在开发一个应用程序,我在共享意图的帮助下从我的应用程序共享 URL:
final Intent intentShare = new Intent(Intent.ACTION_SEND);
intentShare.setType("text/plain");
intentShare.putExtra(Intent.EXTRA_TEXT, "www.google.com");
try {
startActivity(Intent.createChooser(intentShare, "Select an action"));
} catch (android.content.ActivityNotFoundException ex) {
// (handle error)
}
申请的需要是:
通过共享意图共享链接后,应调用新意图以在第二个屏幕上导航。
怎么做?。