我在FrameLayout中有一张地图v2。如果我没有从代码中为它设置动画,它会以通常的方式响应触摸/滑动/捏合事件。如果我在onLocationChanged()调用后对其进行动画处理,则摄像机会移动并缩放,但是地图会停止响应用户输入(或者至少是感觉)。你滑动但地图不平移。你捏,但地图不缩放。你点击......你明白了。
然而,我偶然发现某些事情正在发生,但它并没有因某种原因而被显示出来。例如,如果我滑动,地图不会移动,但会以某种方式记录滑动。如果我触摸主页按钮,将系统带回主屏幕,然后再将应用程序带到前台,我可以看到我的地图处于平移位置,可以进行最远的变焦,没有我最终添加的任何标记。似乎滑动手势被一个以lat = 0,lng = 0为中心的重叠不可见地图捕获并应用于该地图,现在看来该地图正在显示。
除此之外,使用各种断点,很明显我的活动中没有创建任何其他地图,更不用说透明和重叠了......我的描述只是为了让你了解发生了什么,我是并不是说我的上面确实有另一张地图。
以下是相关的代码片段,如果您需要更多代码,请询问:
我的onCreate()
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.map_activity);
}
我的onStart()是:
@Override
protected void onStart()
{
super.onStart();
// Create the LocationRequest object
mLocationRequest = LocationRequest.create();
// Use high accuracy
mLocationRequest.setPriority(
LocationRequest.PRIORITY_HIGH_ACCURACY);
// Set the update interval to 5 seconds
mLocationRequest.setInterval(UPDATE_INTERVAL);
// Set the fastest update interval to 1 second
mLocationRequest.setFastestInterval(FASTEST_INTERVAL);
mLocationClient = new LocationClient(this, this, this);
mLocationClient.connect();
}
@Override
public void onConnected(Bundle arg0)
{
mLocationClient.requestLocationUpdates(mLocationRequest, this);
}
我的onLocationChanged()是
@Override
public void onLocationChanged(Location loc)
{
if (mMap == null)
{
mapFragment = SupportMapFragment.newInstance();
FragmentTransaction fragmentTransaction = getSupportFragmentManager()
.beginTransaction();
fragmentTransaction.add(R.id.mapcontainer, mapFragment);
fragmentTransaction.commit();
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.getUiSettings().setAllGesturesEnabled(true);
mMap.getUiSettings().setMyLocationButtonEnabled(true);
mMap.getUiSettings().setZoomControlsEnabled(true);
mMap.getUiSettings().setCompassEnabled(true);
mMap.setMyLocationEnabled(false);
LatLng location = new LatLng(loc.getLatitude(), loc.getLongitude());
CameraPosition pos = new CameraPosition.Builder().target(location).zoom(12).build();
CameraUpdate cu = CameraUpdateFactory.newCameraPosition(pos);
mMap.animateCamera(cu);
if (mLocationClient.isConnected())
mLocationClient.removeLocationUpdates(this);
mLocationClient.disconnect();
Log.e(getClass().getSimpleName(), "lat = " + location.latitude + " long = " + location.longitude);
}
}
请注意,我将地图配置推迟到第一个onLocationChanged()事件,否则地图拒绝为请求的位置设置动画(请参阅我的另一个问题:Android: GoogleMap v2 ignores animate/move calls)。
答案 0 :(得分:1)
您似乎要在布局中添加两个SupportMapFragment
。用户看到的不是他们与之交互的人。确保只添加一个片段。