onResponse函数的if条件不能正常工作

时间:2019-07-08 02:18:04

标签: android android-studio

我想在查询特定电子邮件地址后显示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();
    }
}

为什么不执行它?

0 个答案:

没有答案