2016-05-09 194 views

回答

1

我建議你使用Volley

通過搖籃

compile 'com.android.volley:volley:1.0.0' 

添加抽射項目的android.permission.INTERNET對允許添加到您的應用程序的清單。

的代碼是從1

// Instantiate the RequestQueue. 
RequestQueue queue = Volley.newRequestQueue(this); 
String url ="http://www.google.com"; //set your web call here 

// Request a string response from the provided URL. 
StringRequest stringRequest = new StringRequest(Request.Method.GET, url, 
     new Response.Listener<String>() { 
    @Override 
    public void onResponse(String response) { 
     //handle success 
    } 
     }, new Response.ErrorListener() { 
    @Override 
    public void onErrorResponse(VolleyError error) { 
     //handle error 
    } 
}); 

// Add the request to the RequestQueue. 
queue.add(stringRequest); 
+0

採取這可能是一個很好的答案,但我不明白這一點。對我的問題:我在哪裏發佈https://www.googleapis.com/games/v1management/applications/applicationId/players/hidden/playerId?我是否使用代碼或從外部..? – Phil

+0

嗨,你可能把網址的字符串url(在評論/ /設置你的網絡電話在這裏),然後在stringRequest中使用Request.Method.POST。 換句話說,您可以爲單獨的GET和POST請求形成單獨的StringRequest。您也可以相應地添加其他所需的參數。 –