I know I can open Activity with Intent
but I am trying to open particular Activity from my application.
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.3rdPartyApplcation");
if (launchIntent != null)
{
startActivity(launchIntent);
}
Example:- My application is A I have to open Settings page of Application B which is 3rd party application, I also know the activity name.
How to open this settings page via intent