Я новичок в программировании на Java.Я столкнулся с некоторой проблемой здесь, кто-нибудь может дать некоторые комментарии?Когда я проверяю в onLocationChanged()
.Есть желаемое значение для lngpoint
и latpoint
.Но когда я вызвал его для другого метода, loadcoordinate()
, loc.latpoint
и loc.lngpoint
станут равны нулю?Почему?
Отредактировано .. в основном мой код выглядит так:
public class Testgpslocation extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button gpsButton = (Button) findViewById(R.id.gpsButton);
LocationManager a = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
a.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new MyLocationListener());
gpsButton.setOnClickListener(new Button.OnClickListener(){
public void onClick(View v){
LoadCoords();
}});
}
MyLocationListener loc;
public void LoadCoords(){
loc = new MyLocationListener();
String message = String.format(
"wao New Location \n Longitude: %1$s \n Latitude: %2$s",
loc.latpoint, loc.lngpoint
);
Toast.makeText(Testgpslocation.this, message, Toast.LENGTH_LONG).show();
TextView latText = (TextView) findViewById(R.id.latText);
TextView lngText = (TextView) findViewById(R.id.lngText);
double latitude = loc.latpoint;
double longtitude = loc.lngpoint;
latText.setText(Double.toString(latitude));
lngText.setText(Double.toString(longtitude));
}
В другом классе:
private class MyLocationListener implements LocationListener {
private double latpoint;
private double lngpoint;
public void onLocationChanged(Location location) {
this.latpoint = location.getLatitude();
this.lngpoint = location.getLongitude();
String message = String.format(
"New Location \n Longitude: %1$s \n Latitude: %2$s",latpoint, lngpoint
);
Toast.makeText(Testgpslocation.this, message, Toast.LENGTH_LONG).show();
}
@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
}
}
}