I am developing an application in which i am sharing URL from my app with the help of share intent as:
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)
}
need of application is that :
After sharing the link by share intent a new intent should call to navigate on second screen.
How to do that?.