嗨,我正在开发一个应用程序,我需要把我的stopService();在AlertDialog.Builder的PositiveButton中,但是出现错误,我的代码是:

....其他代码

.setPositiveButton("Yes",newDialogInterface.OnClickListener() {

public void onClick(DialogInterface dialog,int id)
   {

     finish();
     System.exit(0);
     stopService(new Intent(this, Service.class));
  }
}


....其他代码

最佳答案

尝试

public void onClick(DialogInterface dialog,int id)
   {

       stopService(new Intent(<InsertYourActivityClassName>.this, Service.class));
       finish();

  }

10-07 21:03