本文介绍了谷歌地图API 2如何显示/隐藏GoogleMap的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要显示/隐藏的GoogleMap。
i want to show/hide googleMap.
GoogleMap googleMap = ((SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map2)).getMap();
如何设置 setVisibility(View.INVISIBLE)或setVisibility(View.VISIBLE) ??
推荐答案
您应该隐藏片段本身,或者你可以用尝试getView()。setVisibility(View.INVISIBLE)
的 SupportMapFragment
的子类中。
you should hide the Fragment itself, or you can try with getView().setVisibility(View.INVISIBLE)
inside the SupportMapFragment
subclass.
这是你的活动:
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction ft = fm.beginTransaction()
ft.hide(mFragment).commit();
这篇关于谷歌地图API 2如何显示/隐藏GoogleMap的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!