문제

I use GM fragment in my activity. And I use checkbox to show or hide that map fragment. I want deactivate GoogleMap when it is hidden to disable using GPS. But I cant do that in my activity until it is closed. Any suggestions?

mapGoogle = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map_google)).getMap();
도움이 되었습니까?

해결책

You can use setMyLocationEnabled(boolean enabled) to enable or disable the GPS in GoogleMap.

Run

mapGoogle.setMyLocationEnabled(false);

when you want to disable the GPS, and then

mapGoogle.setMyLocationEnabled(true);

when you want to enable it again.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top