Android Volley对JsonObjectRequest的模糊引用

时间:2015-11-16 09:46:38

标签: android android-volley

我正在尝试使用简单的Volley JsonObjectRequest来处理Web服务,但是我收到了这个错误:

 error: reference to JsonObjectRequest is ambiguous, both constructor JsonObjectRequest(int,String,String,Listener<JSONObject>,ErrorListener) in JsonObjectRequest and constructor JsonObjectRequest(int,String,JSONObject,Listener<JSONObject>,ErrorListener) in JsonObjectRequest match

enter image description here

我从Gradle安装凌空,这是我在项目中使用的简单代码。

public class Simple_JsonRequest extends Activity {
    private TextView mTvResult;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.act__json_request);
        mTvResult = (TextView) findViewById(R.id.tv_result);
        Button btnJsonRequest = (Button) findViewById(R.id.btn_json_request);
        btnJsonRequest.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                RequestQueue queue = MyVolley.getRequestQueue();
                JsonObjectRequest myReq = new JsonObjectRequest(Request.Method.GET,
                                                        "http://echo.jsontest.com/key/value/one/two",
                                                        null,
                   createMyReqSuccessListener(),
                   createMyReqErrorListener());
                queue.add(myReq);
            }
        });
    }


    private Response.Listener<JSONObject> createMyReqSuccessListener() {
        return new Response.Listener<JSONObject>() {
            @Override
            public void onResponse(JSONObject response) {
                try {
                    mTvResult.setText(response.getString("one"));
                } catch (JSONException e) {
                    mTvResult.setText("Parse error");
                }
            }
        };
    }
    private Response.ErrorListener createMyReqErrorListener() {
        return new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                mTvResult.setText(error.getMessage());
            }
        };
    }
}

2 个答案:

答案 0 :(得分:0)

因为JsonObjectRequest有两个构造函数, 一个是 JsonObjectRequest(int,String,JSONObject,Listener<JSONObject>,ErrorListener) 另一个是 JsonObjectRequest(int,String,String,Listener<JSONObject>,ErrorListener),所以如果你将第三个参数设置为null,编译器就不会知道你想要使用哪个构造函数,所以发生了这样的错误。

要解决您的问题,您只需将第三个参数替换为new JSONObject()""

答案 1 :(得分:0)

如何用更具体的东西替换null哪个是第三个参数然后尝试?