How do I make an activity full screen? I mean without the notification bar. Any ideas?
Just paste this code into onCreate() method
onCreate()
requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);