Intent i = new Intent( Intent.ACTION_MAIN ); // don't think main is
necessary actually :)
i.setComponentName(
new ComponentName( "pkgname", "activityclassname" )
);
i.addFlags( Intent.FLAG_ACTIVITY_NEW_TASK );
i.addFlags( Intent.FLAG_FROM_BACKGROUND);
try {
startActivity( i );
}
catch ( ActivityNotFoundException e ) {
}
If the user has just left an app via Home, you might find it takes 5
seconds for your activity to appear. An Android bug I logged about 9
months ago,
grouse grouse :)
Pent
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en