如果我点击“查找当前位置”按钮,则显示“抱歉!强制关闭”。我想显示纬度和经度。 GPS已在我的手机中开启。它仍然显示错误消息。我的代码出了什么问题?
public class CurrentLocation extends Activity {
private static final long MINIMUM_DISTANCE_CHANGE_FOR_UPDATES = 1; // in Meters
private static final long MINIMUM_TIME_BETWEEN_UPDATES = 1000; // in Milliseconds
protected LocationManager locationManager;
protected Button retrieveLocationButton;
DBAdapter dbA = new DBAdapter (CurrentLocation.this);
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.curloc);
Button bacButton = (Button)findViewById(R.id.bk);
bacButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent explicitIntent = new Intent(CurrentLocation.this,ImageSearchActivity.class);
startActivity(explicitIntent);
}
});
retrieveLocationButton = (Button) findViewById(R.id.retrieve_location_button);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MINIMUM_TIME_BETWEEN_UPDATES,
MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
new MyLocationListener()
);
retrieveLocationButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
showCurrentLocation();
}
});
}
protected void showCurrentLocation() {
Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
String message = String.format("Current Location \n Longitude: %1$s \n Latitude: %2$s",
location.getLongitude(), location.getLatitude());
double longit = location.getLongitude();
double latid = location.getLatitude();
try {
dbA.open();
dbA.Insert(longit,latid);
dbA.close();
} catch (Exception e) {
Toast.makeText(CurrentLocation.this,e.getMessage(), Toast.LENGTH_LONG).show();
}
Toast.makeText(CurrentLocation.this, message,Toast.LENGTH_LONG).show();
}
}
private class MyLocationListener implements LocationListener {
public void onLocationChanged(Location location) {
String message = String.format("New Location \n Longitude: %1$s \n Latitude: %2$s",
location.getLongitude(), location.getLatitude());
Toast.makeText(CurrentLocation.this, message, Toast.LENGTH_LONG).show();
Toast.makeText(CurrentLocation.this, "Location Stored Successfully", Toast.LENGTH_LONG).show();
}
public void onStatusChanged(String s, int i, Bundle b) {
Toast.makeText(CurrentLocation.this, "Provider status changed",
Toast.LENGTH_LONG).show();
}
public void onProviderDisabled(String s) {
Toast.makeText(CurrentLocation.this,"Provider disabled by the user. GPS turned off",
Toast.LENGTH_LONG).show();
}
public void onProviderEnabled(String s) {
Toast.makeText(CurrentLocation.this, "Provider enabled by the user. GPS turned on",
Toast.LENGTH_LONG).show();
}
}
} // end of class
答案 0 :(得分:0)
在函数GetCurrentLocation
try {
gps_enabled=lmGps.isProviderEnabled(LocationManager.GPS_PROVIDER);
} catch(Exception ex) {
}
try {
lmGps.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,0,gpsLocationListener);
} catch(Exception ex){
}
如此调用gpsLocationListener
这将返回您当前的位置并随意执行任何操作。
LocationListener gpsLocationListener=new LocationListener(){
public void onLocationChanged(Location location){
dGpsLat=location.getLatitude();
dGpsLng=location.getLongitude();
dLat=dGpsLat;
dLng=dGpsLng;
if(dLat>0 && dLng>0){ (...) }
try {
//SaveLocation();
} catch (Exception e) {
sResponse=e.toString();
return;
}
}
public void onStatusChanged(String provider,int status,Bundle extras){}
public void onProviderEnabled(String provider){}
public void onProviderDisabled(String provider){}
};