Android:如何在销毁服务时调用活动(onDestroy)?

时间:2011-08-01 09:10:16

标签: java android service android-activity android-ndk

有人知道如何在销毁服务时调用活动吗?我已尝试使用下面的代码,但它无法正常工作并使我成为force close

@Override
public void onDestroy() {
    Intent goToAbout = new Intent(this, AboutForm.class);
    startActivity(goToAbout);
}

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

public void onDestroy(){
    Intent myIntent = new Intent(this,
            MyACtivity.class);
    myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    getApplication().startActivity(myIntent);
}