2013-09-26 4 views
0

지금 나는 움직이는 동안 1 분마다 다른 위도와 경도를 얻기 위해 GPS로 작업하고 있으며 배열 목록에 저장해야합니다. 나는 이것을 위해 쓰레드를 사용하고있다. 나는이 링크를 따라 갔다. 이동하면서 http://www.androidhive.info/2012/08/android-working-with-google-places-and-maps-tutorial/안드로이드에서 1 분마다 움직이는 동안 다른 위도와 경도를 얻는 방법은 무엇입니까?

그리고 내 코드

입니다 Tracking.java

package com.example.getlatlang; 

import java.util.ArrayList; 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
import android.widget.Toast; 


public class Tracking extends Activity 
{ 

Button btnShowLocation; 
boolean isRepeat = true; 
protected int splashTime = 1000; 

int timer =0; 
Thread th; 
ArrayList<Double> lat_array = new ArrayList<Double>(); 
ArrayList<Double> lon_array = new ArrayList<Double>(); 
// GPSTracker class 
GPSTracker gps; 

@Override 
public void onCreate(Bundle savedInstanceState) 
{ 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.currentlocation); 

    btnShowLocation = (Button) findViewById(R.id.start_bt); 

    // show location button click event 
    btnShowLocation.setOnClickListener(new View.OnClickListener() 
    { 

     @Override 
     public void onClick(View arg0) 
     {  
      // create class object 

      if(isRepeat) 
      { 
       isRepeat = false; 
       btnShowLocation.setBackgroundResource(R.drawable.stop); 
       if(lat_array.size()>0 && lon_array.size()>0) 
       { 
        lat_array.clear(); 
        lon_array.clear(); 
        System.out.println("Array cleared..."); 
       } 
      // check if GPS enabled th=new Thread() 
       th=new Thread() 
       { 
        @Override 
         public void run(){ 
          try 
          { 
           for (timer = 0; timer < 20; timer++) 
           { 
            // int waited = 0; 
            // while(waited < splashTime) 
            // { 
             Thread.sleep(100); 
             runOnUiThread(new Runnable() 
             { 
              @Override 
              public void run() 
              { 
               try 
               { gps = new GPSTracker(Tracking.this); 
                if(gps.canGetLocation()) 
                { 

                 double latitude = gps.getLatitude(); 
                 double longitude = gps.getLongitude(); 

                 lat_array.add(latitude); 

                 lon_array.add(longitude); 
                 // \n is for new line 
                 System.out.println("lat_array"+lat_array+"lon_array"+lon_array); 
                 Toast.makeText(getApplicationContext(), "Your Location is - \nLat: " + lat_array + "\nLong: " + lon_array, Toast.LENGTH_LONG).show(); 
                } 
                else 
                { 
                 // can't get location 
                 // GPS or Network is not enabled 
                 // Ask user to enable GPS/network in settings 
                 gps.showSettingsAlert(); 
                } 
               } 
               catch(Exception e) 
               { 
                e.printStackTrace(); 
               } 
              } 
             }); 
            // waited += 100; 
            //} 
           }} 
          catch (InterruptedException e) 
          { 
          } 

         } 
        }; 
        th.start(); 

       } 


      else 
      { 

       isRepeat = true;      
       th.interrupt(); 
       btnShowLocation.setBackgroundResource(R.drawable.start); 

      } 
     } 
    }); 
} 
public void ohDestroy() 
{ 
    th.stop(); 
} 
} 

GPSTracker.java는

package com.example.getlatlang; 

import android.app.AlertDialog; 
import android.app.Service; 
import android.content.Context; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.location.Location; 
import android.location.LocationListener; 
import android.location.LocationManager; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.provider.Settings; 
import android.util.Log; 

public class GPSTracker extends Service implements LocationListener 
{ 

private final Context mContext; 

// flag for GPS status 
boolean isGPSEnabled = false; 

// flag for network status 
boolean isNetworkEnabled = false; 

// flag for GPS status 
boolean canGetLocation = false; 

Location location; // location 
double latitude; // latitude 
double longitude; // longitude 

// The minimum distance to change Updates in meters 
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters 

// The minimum time between updates in milliseconds 
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute 

// Declaring a Location Manager 
protected LocationManager locationManager; 

public GPSTracker(Context context) { 
    this.mContext = context; 
    getLocation(); 
} 

public Location getLocation() { 
    try { 
     locationManager = (LocationManager) mContext 
       .getSystemService(LOCATION_SERVICE); 

     // getting GPS status 
     isGPSEnabled = locationManager 
       .isProviderEnabled(LocationManager.GPS_PROVIDER); 

     // getting network status 
     isNetworkEnabled = locationManager 
       .isProviderEnabled(LocationManager.NETWORK_PROVIDER); 

     if (!isGPSEnabled && !isNetworkEnabled) { 
      // no network provider is enabled 
     } else { 
      this.canGetLocation = true; 
      if (isNetworkEnabled) { 
       locationManager.requestLocationUpdates(
         LocationManager.NETWORK_PROVIDER, 
         MIN_TIME_BW_UPDATES, 
         MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
       Log.d("Network", "Network"); 
       if (locationManager != null) { 
        location = locationManager 
          .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
        if (location != null) { 
         latitude = location.getLatitude(); 
         longitude = location.getLongitude(); 
        } 
       } 
      } 
      // if GPS Enabled get lat/long using GPS Services 
      if (isGPSEnabled) { 
       if (location == null) { 
        locationManager.requestLocationUpdates(
          LocationManager.GPS_PROVIDER, 
          MIN_TIME_BW_UPDATES, 
          MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 
        Log.d("GPS Enabled", "GPS Enabled"); 
        if (locationManager != null) { 
         location = locationManager 
           .getLastKnownLocation(LocationManager.GPS_PROVIDER); 
         if (location != null) { 
          latitude = location.getLatitude(); 
          longitude = location.getLongitude(); 
         } 
        } 
       } 
      } 
     } 

    } catch (Exception e) { 
     e.printStackTrace(); 
    } 

    return location; 
} 

/** 
* Stop using GPS listener 
* Calling this function will stop using GPS in your app 
* */ 
public void stopUsingGPS(){ 
    if(locationManager != null){ 
     locationManager.removeUpdates(GPSTracker.this); 
    }  
} 

/** 
* Function to get latitude 
* */ 
public double getLatitude(){ 
    if(location != null){ 
     latitude = location.getLatitude(); 
    } 

    // return latitude 
    return latitude; 
} 

/** 
* Function to get longitude 
* */ 
public double getLongitude(){ 
    if(location != null){ 
     longitude = location.getLongitude(); 
    } 

    // return longitude 
    return longitude; 
} 

/** 
* Function to check GPS/wifi enabled 
* @return boolean 
* */ 
public boolean canGetLocation() { 
    return this.canGetLocation; 
} 

/** 
* Function to show settings alert dialog 
* On pressing Settings button will lauch Settings Options 
* */ 
public void showSettingsAlert(){ 
    AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext); 

    // Setting Dialog Title 
    alertDialog.setTitle("GPS is settings"); 

    // Setting Dialog Message 
    alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?"); 

    // On pressing Settings button 
    alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog,int which) { 
      Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
      mContext.startActivity(intent); 
     } 
    }); 

    // on pressing cancel button 
    alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 
     public void onClick(DialogInterface dialog, int which) { 
     dialog.cancel(); 
     } 
    }); 

    // Showing Alert Message 
    alertDialog.show(); 
} 

@Override 
public void onLocationChanged(Location location) { 
} 

@Override 
public void onProviderDisabled(String provider) { 
} 

@Override 
public void onProviderEnabled(String provider) { 
} 

@Override 
public void onStatusChanged(String provider, int status, Bundle extras) { 
} 

@Override 
public IBinder onBind(Intent arg0) { 
    return null; 
} 

} 

이제 내 문제는 서로 다른 위도와 경도 포인트를 획득 할 수 수 없습니다 . 첫 번째 값은 배열에 20 번만 저장됩니다. 왜냐하면 나는 밟는 곳을 20 번 달리게해야한다. 그러나 나는 다른 점을 얻고 배열 목록에 저장하고 싶다. 나는 실수를 어디에서했는지 모른다. 어떤 몸이라도이 문제를 해결할 수 있습니까? 미리 감사드립니다.

+1

스케줄러 및 서비스를 사용합니다. – WISHY

답변

1

이 내용을 적용하면 10 초마다 새로 고침되고 투표를 통해 답을 수락합니다.

Handler mHandler1 = new Handler(); 

    new Thread(new Runnable() { 
     @Override 
     public void run() { 
      // TODO Auto-generated method stub 
      while (true) { 
       try { 
        Thread.sleep(10000); 
        mHandler1.post(new Runnable() { 

         @Override 
         public void run() { 
          // TODO Auto-generated method stub 



          // creating GPS Class object 
         GPSTracker gps = new GPSTracker (Tracking .this); 

          // check if GPS location have some values 
          if (gps.canGetLocation()) { 

           double currentlat = gps.getLatitude(); 
           double currentlong = gps.getLongitude(); 



          } else { 
           // no current location 
           gps.showSettingsAlert(); 
          } 
         } 
        }); 
       } catch (Exception e) { 
        // TODO: handle exception 
       } 
      } 
     } 
    }).start(); 
+0

변경된 pls가 있습니다. –

1

위도를 수집하는 루프에 sleep(100)을 사용했습니다.
시간 단위는 마이크로 초입니다. (알고있는 한)
20 * 100 = 2000로 단지 2 초입니다. 그리고 나는 GPS가 그렇게 빨리 업데이트한다고 생각하지 않는다.
이것 좀보세요.

대신 동일한 루프를 사용할 수 있지만 이전 값과 다른 경우에만 값을 저장하십시오.

if(oldLat != curLat){ 
    //store curLat to array 
    //and make oldLat = curLat 
} 
+0

동의합니다. 우리는 응용 프로그램에 응용 프로그램 수준에서 2 초마다 새로 고침/업데이트하도록 요청할 수 있지만 모든 새로 고침 간격에 대해 후속 GPS "위치 수정"또는 "핫 스타트"(TTSF)가 매 2 회마다 발생할 수 있음을 보장하지 않습니다 초 (장치 수준에서); GPS 위치를 즉시 잠그기 위해 이미 저장된 위성 정보의 이용 가능성에 달려있다. 많은 GPS 수신기가 매우 빠른 TTSF를 달성 할 수는 없습니다.이 제품은 2 초마다 "핫 스타트"를 할 수 있다고 주장합니다. https://www.linxtechnologies.com/resources/data-guides/rxm-gps-sr.pdf (확실히 스마트 폰 디자인이 아님) – ecle