Android - don't refresh Google Maps v2 on rotation

后端 未结 4 1507
礼貌的吻别
礼貌的吻别 2021-01-12 12:31

When I rotate my device, Google Maps v2 refreshes. How do I prevent this refresh from occurring? I\'m adding the map dynamically in a tab of a SherlockFragment.

4条回答
  •  無奈伤痛
    2021-01-12 13:15

    You can't, the map is getting refreshed because the Activity is getting re-created on configuration changes (screen rotations...). You could prevent the rotation of the Activity by using:

    android:screenOrientation="landscape"
    

    or

    android:screenOrientation="portrait"
    

    in the Manifest file under your map Activity.

    and this way prevent it from being recreated on rotations.

提交回复
热议问题