我想在查询特定电子邮件地址后显示MySQL表中的一些数据。但是以下代码中的if
条件并未执行:
public void onResponse(String response) {
if(response.equals("true")) {
Intent intent = new Intent(getApplicationContext(), UserProfile.class);
intent.putExtra("email",EMAIL);
startActivity(intent);
} else {
AlertDialog.Builder alert = new AlertDialog.Builder(mContext);
alert.setMessage(response);
alert.setCancelable(false);
alert.setPositiveButton("OK1", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.dismiss();
}
});
alert.show();
}
}
为什么不执行它?