我正在尝试创建MapView
.
问题是定义扩展版本时MapView
,mapview 不平移。
我正在实现onTouchListener
我的自定义地图视图内部。
我还想知道是否有任何方法可以平移地图视图。
当 MapView 的库存版本与相同的源代码一起使用时,该问题不会持续存在。
编辑
MyMapView来源:
public class MyMapView extends MapView{
public MyMapView(Context context, String apiKey) {
super(context, apiKey);
}
public MyMapView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyMapView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if(event.getAction()==MotionEvent.ACTION_DOWN){
Log.v("MyMapView","Touched");
}
return false ;
}
}
我onCreate()
来自MapActivity
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.mapper);
mMapView=(MyMapView) findViewById(R.id.mapper_map);
mMapView.setSatellite(false);
}