0

我在 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)。

4

1 回答 1

1

您似乎在SupportMapFragment布局中添加了两个 s。用户看到的不是他们与之交互的那个。确保只添加一个片段。

于 2013-10-30T21:05:42.323 回答