我有一个文本视图来显示我的纬度和经度,现在问题是我总是得到这对夫妇(32,35)(我认为这是在某个海洋的某个地方),我什至出去散步给 gps机会,但我一无所获。
我想看看它是否与我的手机或手机中的 gps 有关,所以我继续打开 Waze 应用程序,发现它确实有效。
可能是什么问题?
这是我的简单代码片段:
public class Main extends Activity implements LocationListener {
private LocationManager manager;
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.textView1);
tv.setText("Hello There");
manager = (LocationManager) this.getSystemService(LOCATION_SERVICE);
manager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
}
@Override
public void onLocationChanged(Location location) {
tv.setText((int)location.getLatitude()+ ","+ (int)location.getLongitude());
}
...
}