Android线程问题

前端之家收集整理的这篇文章主要介绍了Android线程问题 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有以下代码,希望每30秒循环一次.

MyLocation myLocation = new MyLocation();
    public LocationResult locationResult = new LocationResult() {
        @Override
        public void gotLocation(final Location location) {
            GeoPoint myGeoPoint = new GeoPoint(
                    (int) (location.getLatitude() * 1000000),(int) (location.getLongitude() * 1000000));
            myMapController.animateTo(myGeoPoint);
            myMapController.setZoom(10);

            lat = location.getLatitude();
            lon = location.getLongitude();

            new OverlayTask().execute();


            Timer timer;
            timer = new Timer();
            timer.scheduleAtFixedRate(new MyTimerTask(),30000,30000); 
        }

    };

一旦获得位置,就会被解雇,并且OverlayTask执行得很好,当分配给菜单项强制执行时,它也会执行.

但是在计时器内部,我得到一个错误.

public class MyTimerTask extends TimerTask {
    public void run() {
        try {
            Log.i(">>>>>>>>>>>> Refresh: ","Success");
            new OverlayTask().execute();
        } catch (Exception e) {
            Log.e(">>>>>>>>>>>> Error executing MyAsyncTask: ",e.getMessage(),e);
        }
    }
}

错误是…

Error executing MyAsyncTask:(2573): Only the original thread that created a view hierarchy can touch its views.

最佳答案
使用runOnUiThread方法

public class MyTimerTask extends TimerTask {
    public void run() {
        runOnUIThread(new Runnable(){
            public void run(){
                try {
                    Log.i(">>>>>>>>>>>> Refresh: ","Success");
                    new OverlayTask().execute();
                } catch (Exception e) {
                    Log.e(">>>>>>>>>>>> Error executing MyAsyncTask: ",e);
                }
            }
        });
    }
}
原文链接:https://www.f2er.com/android/531578.html

猜你在找的Android相关文章