How to make my app full screen on Galaxy Tab

后端 未结 8 1384
余生分开走
余生分开走 2020-12-30 11:29

I\'ve been trying everything I can think of to get my app to display full screen on the Galaxy Tab.

Basically, it works like the Lunar Lander example app that comes

8条回答
  •  青春惊慌失措
    2020-12-30 11:52

    you can add this exactly under

      super.onCreate(savedInstanceState);
    

    of the activity you want to be full screen.

     requestWindowFeature(Window.FEATURE_NO_TITLE);
     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                WindowManager.LayoutParams.FLAG_FULLSCREEN);  
    

提交回复
热议问题