2016-09-11 151 views
-1

我有获取手机GPS位置的代码。但它不能正常工作。无法获得GPS位置

位置只显示我第一次按下按钮(获取位置的按钮)。我改变了我的地方,并再次按下它,但它永远不会改变......即使当我重新启动应用程序!

GPS:

package com.example.hhh; 

public class GPSTracker extends Service implements LocationListener{ 

    private final Context context; 

    boolean isGPSEnabled = false; 
    boolean isNetworkEnabled = false; 
    boolean canGetLocation = false; 

    Location location; 

    double latitude; 
    double longitude; 

    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; 
    private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; 

    protected LocationManager locationManager; 

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

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

      isGPSEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER); 

      isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER); 

      if(!isGPSEnabled && !isNetworkEnabled) { 

      } else { 
       this.canGetLocation = true; 

       if (isNetworkEnabled) { 

        locationManager.requestLocationUpdates(
          LocationManager.NETWORK_PROVIDER, 
          MIN_TIME_BW_UPDATES, 
          MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 

        if (locationManager != null) { 
         location = locationManager 
           .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 

         if (location != null) { 

          latitude = location.getLatitude(); 
          longitude = location.getLongitude(); 
         } 
        } 

       } 

       if(isGPSEnabled) { 
        if(location == null) { 
         locationManager.requestLocationUpdates(
           LocationManager.GPS_PROVIDER, 
           MIN_TIME_BW_UPDATES, 
           MIN_DISTANCE_CHANGE_FOR_UPDATES, this); 

         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; 
    } 


    public void stopUsingGPS() { 
     if(locationManager != null) { 
      locationManager.removeUpdates(GPSTracker.this); 
     } 
    } 

    public double getLatitude() { 
     if(location != null) { 
      latitude = location.getLatitude(); 
     } 
     return latitude; 
    } 

    public double getLongitude() { 
     if(location != null) { 
      longitude = location.getLongitude(); 
     } 

     return longitude; 
    } 

    public boolean canGetLocation() { 
     return this.canGetLocation; 
    } 

    public void showSettingsAlert() { 
     AlertDialog.Builder alertDialog = new AlertDialog.Builder(context); 

     alertDialog.setTitle("GPS is settings"); 

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

     alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() { 

      @Override 
      public void onClick(DialogInterface dialog, int which) { 
       Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
       context.startActivity(intent); 
      } 
     }); 

     alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { 

      @Override 
      public void onClick(DialogInterface dialog, int which) { 
       dialog.cancel(); 
      } 
     }); 

     alertDialog.show(); 
    } 

    @Override 
    public void onLocationChanged(Location arg0) { 
     // TODO Auto-generated method stub 

    } 

    @Override 
    public void onProviderDisabled(String arg0) { 
     // TODO Auto-generated method stub 

    } 

    @Override 
    public void onProviderEnabled(String arg0) { 
     // TODO Auto-generated method stub 

    } 

    @Override 
    public void onStatusChanged(String arg0, int arg1, Bundle arg2) { 
     // TODO Auto-generated method stub 

    } 

    @Override 
    public IBinder onBind(Intent intent) { 
     // TODO Auto-generated method stub 
     return null; 
    } 
} 

主:

package com.Gps.getlocation; 

    public class MainActivity extends ActionBarActivity { 

    private EditText editText11; 
    private EditText editText22; 

     Button btnShowLocation; 
     Button btnn; 
     GPSTracker gps; 


     @Override 
     protected void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.lay); 

      editText11 = (EditText) findViewById(R.id.editText1); 
      editText22 = (EditText) findViewById(R.id.editText2); 




      btnShowLocation = (Button) findViewById(R.id.show_location); 
      btnn = (Button) findViewById(R.id.btn); 


      btnShowLocation.setOnClickListener(new View.OnClickListener() { 

       @Override 
       public void onClick(View v) { 
        gps = new GPSTracker(MainActivity.this); 

        if(gps.canGetLocation()) { 
         double latitude = gps.getLatitude(); 
         double longitude = gps.getLongitude(); 


         editText11.setText("" + latitude , TextView.BufferType.EDITABLE); 
         editText22.setText("" + longitude , TextView.BufferType.EDITABLE); 




        } else { 
         gps.showSettingsAlert(); 
        } 
       } 
      }); 
      } 
     } 

我不喜欢把这里所有的代码,但我实在无法理解的问题。
这个问题应该是愚蠢的,我相信...但我找不到那个愚蠢的问题

+0

首先,您需要[运行时请求权限](https://developer.android.com/training/permissions/requesting.html)[ACCESS_FINE_LOCATION](https://developer.android.com/reference /android/Manifest.permission.html#ACCESS_FINE_LOCATION),然后尝试获取位置信息。 – pRaNaY

+0

@pRaNaY你的意思是:“”?? – dave

+0

在我的评论上方选中“在运行时请求权限”链接。您还可以选中[this](http://stackoverflow.com/a/32084038/2949612)答案以向用户请求运行时权限。 – pRaNaY

回答

2

你没有更新location变量。在onLocationChanged()加入这一行:

location = arg0; 
+0

这行代码去哪里? –

+0

正如我在我的回答中所说:在onLocationChanged() –

+0

@ A.Omar谢谢..但它没有奏效 – dave

0

你只调用的getLocation()一旦应用程序启动时。 getLocation()也比必要的复杂得多。您只需要获取LocationManager并调用requestLocationUpdates()。然后在onLocationChanged()保存新的位置。