android – 等待谷歌地图在MapFragment中有大小

我的活动在LinearLayout中包含一个MapFragment.我做了以下几点

in onCreate:

>我在onCreate方法中使用setContentView来扩展此布局
我的活动.
>使用getMap()获取GoogleMap的句柄.

在onStart上:

>我从sqlite数据库获取一些位置坐标
>将相应的标记添加到地图中
>将这些点添加到LatLngBounds.Builder
>使用newLatLngBounds(Builder.build(),10)为相机设置动画

根据maps api引用,我不应该在确保地图有大小之前调用newLatLngBounds(LatLngBounds bounds,int padding).我确实在这一点上得到了一个IllegalStateException.但是,等到地图有大小的正确方法是什么?

解决方法

我过去成功使用了以下代码
final LatLngBounds.Builder builder = new LatLngBounds.Builder();
final View mapView = fragment.getView();
final GoogleMap map = fragment.getMap():

//Add points to builder. And get bounds...
final LatLngBounds bounds = builder.build();

// Pan to see all markers in view.
// Cannot zoom to bounds until the map has a size.

if (mapView.getViewTreeObserver().isAlive()) {
    mapView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

        public void onGlobalLayout() {
            mapView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
            map.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds,50),1500,null);         
        }
    });
}

相关文章

以下为个人理解,如错请评 CE: 凭据加密 (CE) 存储空间, 实际路径/data/user_ce/ DE: 设备加密 (DE) 存...
转载来源:https://blog.csdn.net/yfbdxz/article/details/114702144 用EventLog.writeEvent打的日志(或...
事件分发机制详解 一、基础知识介绍 1、经常用的事件有:MotionEvent.ACTION_DOWN,MotionEvent.ACTION...
又是好久没有写博客了,一直都比较忙,最近终于有时间沉淀和整理一下最近学到和解决的一些问题。 最近进...
Android性能优化——之控件的优化 前面讲了图像的优化,接下来分享一下控件的性能优化,这里主要是面向...
android的开源库是用来在android上显示gif图片的。我在网上查了一下,大家说这个框架写的不错,加载大的...