嗨我正在开发一个应用程序,我需要把我的 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));
}
}
.... 其他代码