How to activate full screen control DOTS (SDK14)

前端 未结 2 1556
自闭症患者
自闭症患者 2021-01-16 08:15

Does anybody know what i mean?

In fullscreen mode of the new camera app on my galaxy nexus the control buttons are changing into 3 dots.

How can i activate t

相关标签:
2条回答
  • 2021-01-16 08:32

    You can use

    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
    

    within your activity.

    See View.SYSTEM_UI_FLAG_LOW_PROFILE

    0 讨论(0)
  • 2021-01-16 08:33

    It's a standard Options Menu. On 3.0+ it creates those dots, in 2.3.3- you access it with the menu key.

    http://developer.android.com/guide/topics/ui/menus.html

    0 讨论(0)
提交回复
热议问题