|
|
@@ -509,7 +509,12 @@ public class SCSMTIndexFragment extends BaseFragment implements AdapterView.OnIt
|
|
|
if (exceptionCode == 3001) {
|
|
|
new AlertDialog.Builder(mActivity).setTitle("提示")
|
|
|
.setMessage(errorMsg.exceptionInfo + ",是否强制启动?")
|
|
|
- .setPositiveButton(R.string.confirm, null).setNegativeButton(R.string.cancel, null).create().show();
|
|
|
+ .setPositiveButton(R.string.confirm, new DialogInterface.OnClickListener() {
|
|
|
+ @Override
|
|
|
+ public void onClick(DialogInterface dialog, int which) {
|
|
|
+ startMachine(true);
|
|
|
+ }
|
|
|
+ }).setNegativeButton(R.string.cancel, null).create().show();
|
|
|
} else {
|
|
|
CommonUtil.showErrorToast(volleyError, true);
|
|
|
}
|