我正在开发一个基于 GPS 位置导航的 android 应用程序,用于查找用户当前位置。我正在使用 GPS_PROVIDER 我不想使用任何其他提供程序,例如 PASSIVE_PROVIDER 或 NETWORK_PROVIDER 目前我的代码正在运行,它可以准确地为我提供坐标,但是当我退出应用程序并再次启动应用程序时,它给我的坐标与旧的略有不同,而我在同一个地方和同一个位置。
为了找到 GPS 坐标,我使用了以下代码。
LocationManager mlocManager = (LocationManager)
getSystemService(Context.LOCATION_SERVICE);
MyLocationListener mlocListener = new MyLocationListener();
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,
0, mlocListener);
我的听众课是
public class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location loc) {
loc.getLatitude();
loc.getLongitude();
String Text = "My current location is: " + "Latitud = "
+ loc.getLatitude() + "Longitud = " + loc.getLongitude();
TextView txtgps = (TextView) findViewById(R.id.text_GPS_Coordinates);
txtgps.setText(Text);
Toast.makeText(getApplicationContext(), Text, Toast.LENGTH_SHORT)
.show();
}
@Override
public void onProviderDisabled(String provider) {
Toast.makeText(getApplicationContext(), "Disable",
Toast.LENGTH_SHORT).show();
}
@Override
public void onProviderEnabled(String provider) {
Toast.makeText(getApplicationContext(), "Enable",
Toast.LENGTH_SHORT).show();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {}
}
我在 AndroidManifest 中定义的权限是:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
请告诉我提供准确可靠坐标的方法,如果可能,请解释您的代码。