我是 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) {
}
}
谢谢!