VolleyのJsonObjectRequestの引数について
こちらのサイトを参考にしてVolleyによるHTTP通信を実装したのですが。画像のように引数が間違っていると出てしまいます。 調べてみたのですがどこのサイトも上のサイトと同じ引数を使用しているので、Volleyの仕様が変更になったのでしょうか。 VolleyのJsonObjectRequestを確認したところ、次のようなコードになっていたのですが、なぜかUrlがint型になっているのですが、これはバグか何かですか?
/**
* Constructor which defaults to <code>GET</code> if <code>jsonRequest</code> is
* <code>null</code>, <code>POST</code> otherwise.
*
* @see #JsonObjectRequest(int, String, JSONObject, Listener, ErrorListener)
*/
public JsonObjectRequest(int url, String jsonRequest, Listener<JSONObject> listener,
Listener<JSONObject> errorListener) {
this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
listener, errorListener);
}