I am trying to run an android application in an emulator with no Titlebar default. How can I do this?
Asked
Active
Viewed 98 times
2 Answers
0
Yes, you can do it with the this.requestWindowsFeature(Window.FEATURE_NO_TITLE); With this you can make your program full-screen-sized:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

Zwiebel
- 1,605
- 4
- 21
- 37