1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 百度地图 变黑问题 解决方法

百度地图 变黑问题 解决方法

时间:2018-10-10 17:12:37

相关推荐

百度地图 变黑问题 解决方法

有地图的页面 这样定义一下

public static Activity mgpaActivity;

public static MapView mMapView;

@Override

protected void onResume() {

super.onResume();

mMapView.onResume();

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

}

然后跳转一个半透明窗口或者页面后,在另一个页面的onResume方法这样写

@Override

protected void onResume() {

super.onResume();

if (xxx.mgpaActivity != null) {

xxx.mMapView.onResume();

xxx.mgpaActivity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

}

}

然后地图变黑问题解决。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。