当前位置: 代码迷 >> Android >> 将ResponseListener传递给Request类得到错误
  详细解决方案

将ResponseListener传递给Request类得到错误

热度:24   发布时间:2023-08-04 09:56:45.0

我是创建Android应用程序的新手。 我想做的是将变量传递给php服务并获得true或false。 这是我的代码

package com.fishingtournaments.tournamentapp;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.toolbox.Volley;

import org.json.JSONException;
import org.json.JSONObject;

public class LoginActivity extends AppCompatActivity {
 TextView ats;
 EditText qrCode_edit;
 Button check_button;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_login);

    ats = (TextView) findViewById(R.id.text_textView);
    qrCode_edit = (EditText) findViewById(R.id.qrCode_editText);
    check_button = (Button) findViewById(R.id.check_button);


    check_button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            String qrCode = qrCode_edit.getText().toString();
            //ats.setText(qrCode);
            Response.Listener<String> responseListener = new Response.Listener<String>() {
                @Override
                public void onResponse(String response) {

                    try {
                        JSONObject jsonResponse = new JSONObject(response);
                        boolean success = jsonResponse.getBoolean("success");

                        if (success){

                            ats.setText("Toks vartotojas yra");

                        }else{
                            ats.setText("Tokio vartotojo nera");

                        }
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }

                }
            };


            LoginRequest loginRequest;
            loginRequest = new LoginRequest(qrCode, responseListener);
            RequestQueue queue;
            queue = Volley.newRequestQueue(LoginActivity.this);
            queue.add(loginRequest);
        }
    });
}

}

这是我的LoginRequest类

    package com.fishingtournaments.tournamentapp;

import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.toolbox.StringRequest;

import java.util.Map;

/**
 * Created by manta on 2017-02-08.
 */

public class LoginRequest extends StringRequest {
    public static String LOGIN_REQUEST_URL = "http://suvalkijossapalas.devpanda.eu/checkQr.php";
    public Map<String, String> params;

    public LoginRequest(String qrcode, Response.Listener<String> listener){
        super(Request.Method.POST, LOGIN_REQUEST_URL, listener, null);
        params.put("qrCode",qrcode);
    }

    public Map<String,String> getParams(){
        return params;
    }

}

当我尝试在模拟器上运行应用程序并按“检查”按钮时,我的应用程序崩溃了,并出现以下错误:

                                                                             java.lang.NullPointerException: Attempt to invoke interface method

com上com.fishingtournaments.tournamentapp.LoginRequest。(LoginRequest.java:19)上的空对象引用上的'java.lang.Object java.util.Map.put(java.lang.Object,java.lang.Object)' .fishingtournaments.tournamentapp.LoginActivity $ 1.onClick(LoginActivity.java:64)在android.view.View.performClick(View.java:5637)在android.view.View $ PerformClick.run(View.java:22429) .os.Handler.handleCallback(Handler.java:751)位于android.os.Handler.dispatchMessage(Handler.java:95)位于android.os.Looper.loop(Looper.java:154)位于android.app.ActivityThread。 com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:886)处java.lang.reflect.Method.invoke(本机方法)处的main(ActivityThread.java:6119)。 os.ZygoteInit.main(ZygoteInit.java:776)

我认为这可能与以下问题有关: loginRequest = new LoginRequest(qrCode, responseListener); 我认为它是由于responseListener而崩溃的。 任何帮助将不胜感激

问题出在您的LoginRequest代码中。 具体来说这行:

params.put("qrCode",qrcode);

在这里, params字段等于null 您正确地将params字段声明为Map<String String>但从未创建Map<String, String>的新实例来保存数据。

您将必须在构造函数中初始化字段,如下所示:

public LoginRequest(String qrcode, Response.Listener<String> listener){
    super(Request.Method.POST, LOGIN_REQUEST_URL, listener, null);
    params = new Map<String, String();
    params.put("qrCode",qrcode);
}

或者在声明后立即初始化该字段,如下所示:

public static String LOGIN_REQUEST_URL = "http://suvalkijossapalas.devpanda.eu/checkQr.php";
public Map<String, String> params = new Map<String, String>();
  相关解决方案