HttpAsyncRequest request = new HttpAsyncRequest(
MapsActivity.this,
Constant.BaseUrl,
HttpAsyncRequest.RequestType.GET,
new MarkerParser(), listener);
request.addParam("array",arr); //this is not working
request.execute();
工作,我想發送經緯度給我使用的HTTP請求的服務器的ArrayList的,但我們只能通過發送字符串。如何發送latlng的數組列表?發送ArrayList的服務器不與AsyncHttp
是什麼庫,到底是什麼? –
http://loopj.com/android-async-http/這是我正在使用的庫@MatiasOlocco –
爲什麼你不使用'RequestParams'作爲文檔說的? –