0

我在 onCreate() 中有以下计时器:

new Timer().scheduleAtFixedRate(new TimerTask(){

            public void run() {
                Log.i("EOH","timer");
                updateMarkers();
        }}, 0, 1000);

如您所见,它每秒调用一次函数 updateMarkers()。

这是 updateMarkers():

private void updateMarkers(){
        Log.i("EOH","updateMarkers()");
        Drawable drawable = this.getResources().getDrawable(R.drawable.google_maps_marker);
        final MyItemizedOverlay itemizedoverlay = new MyItemizedOverlay(drawable,mapView);

        AsyncHttpClient myClient = new AsyncHttpClient();
        final PersistentCookieStore myCookieStore = new PersistentCookieStore(context);
        myClient.setCookieStore(myCookieStore);
        RequestParams params = new RequestParams();
        params.put("sw_lat", String.valueOf(centrePoint.getLat()-(Double.valueOf(mapView.getLatitudeSpan())/2.0)));
        params.put("sw_lng", String.valueOf(centrePoint.getLat()-(Double.valueOf(mapView.getLongitudeSpan())/2.0)));
        params.put("ne_lat", String.valueOf(centrePoint.getLat()+(Double.valueOf(mapView.getLatitudeSpan())/2.0)));
        params.put("ne_lng", String.valueOf(centrePoint.getLat()+(Double.valueOf(mapView.getLongitudeSpan())/2.0)));

        myClient.post("http://www.prestocab.com/ajax/getRanks.php", params, new AsyncHttpResponseHandler() {

            public void onStart() {
                thinger.setVisibility(View.VISIBLE);
                Log.i("EOH","onStart()");
            }


            public void onSuccess(String response) {
                Log.i("EOH","xxx: "+response);
                thinger.setVisibility(View.INVISIBLE);

                try{
                    JSONArray arr=(JSONArray) new JSONTokener(response).nextValue();
                    Log.i("EOH","yyy: "+String.valueOf(arr.length()));
                }catch(JSONException e){

                }


            }


            public void onFailure(Throwable e) {
                thinger.setVisibility(View.INVISIBLE);
            }


            public void onFinish() {

            }

        });

    }

我遇到的问题是Log.i("EOH","onStart()");永远不会被调用!然而Log.i("EOH","updateMarkers()");被调用...

我究竟做错了什么?

提前谢谢了,

4

2 回答 2

0

我发现 AsyncHttpClient 的当前实现 - 我开始使用的第一个 - 版本 1.4.3 (2013-09-25) 与本地 Intranet 主机名存在一些问题。我正在使用本地网络进行测试,网络服务器在我的计算机上运行,​​它正在调用 onStart,但从未调用 onSuccess 或任何其他方法。

我的主机名是 RM_UB02(没有 Internet 域后缀)。Android 和 Chrome 网络浏览器能够解析 URL (http://RM_UB02/test/page.html),但 AsyncHttpClient 从来没有工作过。

我更改为本地 Intranet IP 地址(192.168.1.104)并开始工作。我发现它适用于 Internet 名称 ( http://slashdot.org ),但不适用于本地网络。

于 2013-09-26T05:03:59.497 回答
-3
@Override
public void onStart()
{
}

@Override
public void onFinish()
{
}

@Override
public void onSuccess()
{
}

@Override
public void onFailure()
{
}
于 2013-05-18T14:57:45.830 回答