我是Android的新手,正在我的android模拟器上尝试一些东西。在使用位置管理器和位置监听器时,我可以使用模拟器测试更改位置的代码。 locationlistener捕获位置更改并移动到特定位置。
我现在想用我的程序复制相同的测试,即每隔x秒(可能是通过线程?)传递新坐标到locationlistener,但是通过我的程序而不是模拟器。
有人可以建议一种实现此功能的方法吗?
我在网上某处找到的位置监听器代码正在尝试:
private LocationListener locationListener;
private MapView mapView;
private MapController mc;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.gps);
lm = (LocationManager)
getSystemService(Context.LOCATION_SERVICE);
locationListener = new MyLocationListener();
lm.requestLocationUpdates(
LocationManager.GPS_PROVIDER,0,0,locationListener);
mapView = (MapView) findViewById(R.id.mpview);
mc = mapView.getController();
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
private class MyLocationListener implements LocationListener
{
@Override
public void onLocationChanged(Location locn) {
if (locn != null) {
GeoPoint point = new GeoPoint(
(int) (locn.getLatitude() * 1E6),
(int) (locn.getLongitude() * 1E6));
mc.animateTo(point);
mapView.invalidate();
}
}
@Override
public void onProviderDisabled(String provider) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onStatusChanged(String provider, int status,
Bundle extras) {
}
}
谢谢!