我有一个活动。在这个Activity中,我执行了一个AsyncTask,但它不起作用

时间:2010-02-18 02:36:26

标签: java android geolocation android-activity android-asynctask

private class ExecuteLocations extends AsyncTask<String, Void, Void>{
    private final ProgressDialog dialog = new ProgressDialog(ListProfiles.this);

    protected void onPreExecute() {
        //this.dialog.setMessage("Starting pre-execute...");
        //this.dialog.show();
    }

    @Override
    protected Void doInBackground(String... arg0) {
        check_profiles_lm=(LocationManager) ListProfiles.this.getSystemService(LOCATION_SERVICE);  
        myLocListen = new LocationListener(){
            @Override
            public void onLocationChanged(Location location) {
                HashMap params = new HashMap();
                params.put("lat", Double.toString(location.getLatitude()));
                params.put("long", Double.toString(location.getLongitude()));
                postData("http://mydomain.com",params);

            }
            @Override
            public void onStatusChanged(String provider, int status,Bundle extras) { 
            }
            @Override
            public void onProviderDisabled(String provider) { 
            }
            @Override
            public void onProviderEnabled(String provider) {
            }
        };      
        check_profiles_lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 30000, 0, myLocListen);
        return null;
    }

    protected void  onPostExecute(final Void unused) {
        if (this.dialog.isShowing()) {
            //this.dialog.dismiss();
        }
        //Do something else here 
    }

}

基本上,我的目标是:

  1. 每分钟左右不断将纬度/经度发布到我的网站。
  2. 当然,我想在另一个线程中执行此操作,因此它不会弄乱我的UI线程。这个AsyncTask应该解决这个问题......但是它会引发一个错误,我不知道为什么。
  3. 你能做些什么来实现我的目标?它非常简单......只需扫描位置并在后台每分钟发布到网页。

    顺便说一下,我的onCreate方法是这样的。基本上就是这样。

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
                new ExecuteLocations().execute();
                setContentView(R.layout.main_list);
        }
    

2 个答案:

答案 0 :(得分:1)

将其分为3个步骤:

  1. 使用AsyncTask
  2. 制作您想要工作的任何作品
  3. 确保你已经找到AsyncTask,在doInBackground(...)中做一个简单的Log.e(“haha”,“gotcha”)并检查它是否显示
  4. 将两者合并。
  5. 对于这种情况,我可能会使用由Service触发的AlarmManager。不管怎样,猜猜你还需要后者。

答案 1 :(得分:0)

将此作为服务创建。在注册位置事件并采取适当行动时,无需使用Timer或AlarmManager。

可以在以下位置找到收听位置事件的示例 http://code.google.com/p/android-bluetooth-on-motion/source/browse/#svn/trunk/BluetoothOnMotion/src/com/elsewhat

        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME_NETWORK, MIN_DISTANCE_NETWORK,locationListener);
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, MIN_TIME_GPS, MIN_DISTANCE_GPS,locationListener);