0

私の Android アプリケーションには多くのアクティビティが含まれています。これらのアクティビティから独立したバックグラウンド プロセスを実行したい (UI で実行されているアクティビティに関係なく)。このバックグラウンド プロセスでは、LocationListener を使用して Location Updates をキャプチャし、Web サービスを呼び出してキャプチャした場所をデータベースに保存したいと考えています。そして、この webservice の呼び出しは 2 分間隔でのみ発生する必要があります。誰かがこれを実装するのを手伝ってくれませんか。

ありがとう。Android デベロッパー

4

2 に答える 2

5

これをチェックして

public class LocationUpdator extends Service{
    Location location;
    private int normallocationwait = 2000;
        Timer timer = new Timer();
        private final Handler handler = new Handler();
    Intent intent;

    public void  onCreate(){
        super.onCreate();
        intent = new Intent(BROADCAST_ACTION);  
        updateNotification();
    }

    //int onStartCommand(Intent intent, int flags, int startId) 
    public void onStart(Intent intent,int startId){
        super.onStart(intent, startId);
        handler.removeCallbacks(sendUpdatesToUI);
            handler.postDelayed(sendUpdatesToUI, 1000); // 1 second
        Log.v("Location Servics", "Start Service");
    }

    public void onDestroy(){
        super.onDestroy();
        Log.v("Location Servics", "Destroy Service");
    }


    protected void updateNotification() {
             LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
             LocationListener locationListener = new MyLocationlistener();

             lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, normallocationwait, 0.250f, locationListener);
             location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        }

    private class MyLocationlistener implements LocationListener {

            public void onLocationChanged(Location location){
                 if(location!=null){
                           dumpLocation(location);
             } 
            }

         public void onProviderDisabled(String provider){
             Log.v("Loc Update","\nProvider disabled: " + provider);
         }

         public void onProviderEnabled(String provider){
             Log.v("Loc Update","\nProvider enabled: " + provider);
         }

         public void onStatusChanged(String provider, int status, Bundle extras){
             Log.v("Loc Update","\nProvider status changed: " + provider + ", status="
                        + status + ", extras=" + extras);
         }

         private void dumpLocation(Location location) {
                         Log.v("Loc Update","\n" + location.toString());
                     Log.v("Demo", location.toString());
                     if(GlobalValues.whereRegister == 1){
                             String url  = TaxiUrls.taxiLocationUpdate_url  + "taxi_device_id="+ GlobalValues.deviceID +
                                    "&lat="+ location.getLatitude() + "&lng=" + location.getLongitude();
                             Toast.makeText(getBaseContext(), "Location Update", Toast.LENGTH_SHORT).show();
                             HttpClient httpclient = new DefaultHttpClient();
                     HttpPost httppost = new HttpPost(url);
                     try {
                        HttpResponse response = httpclient.execute(httppost);
                            Log.v("Message", response.toString());
                     } catch (ClientProtocolException e) {
                        Log.e("Sending Message",e.getMessage().toString());
                     } catch (IOException e) {
                        Log.e("Sending Message",e.getMessage().toString());
                     }
                } 
            }

     }

}
于 2012-04-13T06:51:31.443 に答える
0

バックグラウンドでこれを行うには、単純な AsyncTask を起動する価値があるかもしれません。

于 2012-04-13T06:39:23.740 に答える