Compililation Error while using JsonObjectRequest

前端 未结 3 1305
轻奢々
轻奢々 2021-02-04 13:40

I\'m using mcxiaoke/android-volley library.Im getting compilation error as

Error:(77, 37) error: reference to JsonObjectRequest is ambiguous, both constructor 
         


        
3条回答
  •  北海茫月
    2021-02-04 14:13

    Bill Gates is right, there is no way for that class to know which constructor to use if you pass in null instead of the Object of type String or JSONObject it is expecting in one of the constructors otherwise you will get this ambiguous error, saying that the constructor has 2 matches.

    Try:

     JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET,
            getRequestUrl(10),
            "",
            new Response.Listener() {
        @Override
        public void onResponse(JSONObject response) {
    
    
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
    
        }
    });
    

提交回复
热议问题