gpt4 book ai didi

android - 使用 JsonObjectRequest 时出现编译错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:17:40 25 4
gpt4 key购买 nike

我正在使用 mcxiaoke/android-volley 库。我得到的编译错误是

Error:(77, 37) 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

这是我的代码。我不知道哪里出了问题。任何帮助表示赞赏

JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET,
getRequestUrl(10),
null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {


}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {

}
});

最佳答案

将 null 转换为字符串或 JSONObject,我认为它应该可以正常工作。

new JsonObjectRequest(Request.Method.GET,
getRequestUrl(10),
(String)null,
new Response.Listener<JSONObject>()

关于android - 使用 JsonObjectRequest 时出现编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29105222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com