标签:
用过百度地图的人多很忧伤,各种bug, 已无力吐槽,最无语的可能就是会出现黑屏现象,比如一个Activity包含三个Fragment, 其中一个Fragment嵌套MapView使用,在切换这三个Fragment时会出现明显的黑屏,这个问题出现很久了,很早的SDK版本就存在,现在最新的SDK版本依然存在这个问题,解决方案如下:
1,在使用MapView的Fragment的onResume/onPause方法中手动调用设置view是否可见,具体如下:
@Override protected void OnPause(){ mMapView.setVisibility(View.INVISIBLE); mMapView.onPause(); super.onPause(); } 进入页面时 @Override protected void onResume(){ mMapView.setVisibility(View.VISIBLE); mMapView.onResume(); super.onResume(); }
<FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <FrameLayout android:id="@+id/mapFrameLayout" android:layout_width="match_parent" android:layout_height="match_parent" > </FrameLayout> <FrameLayout android:id="@+id/otherFrameLayout" android:layout_width="match_parent" android:layout_height="match_parent" android:visibility="invisible" > </FrameLayout> </FrameLayout>
Demo工程下载地址:http://download.csdn.net/detail/easyer2012/8968903
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/easyer2012/article/details/47316419