I'm firing an intent to start some 3rd party apps (such as AngryBirds), but I'm having issues closing it:
Intent IAB = new Intent();
IAB.setAction(Intent.ACTION_VIEW);
IAB.setClassName("com.rovio.angrybirds", "com.rovio.ka3d.App");
startActivity (IAB);
the above works fine & launches the app. But when I try to call finish(), it does nothing, the app continues to play. Is there a way to close it?
thanks