Does anyone know how to call an activity when a service is destroyed? I have tried with the code below, but it doesn’t work and geves me a force close.
@Override
public void onDestroy() {
Intent goToAbout = new Intent(this, AboutForm.class);
startActivity(goToAbout);
}
Anyone have an idea?
1 Answer