Reputation: 477
what theme should I use to hide the notification bar but show the action bar? (Like calculator on Samsung phones)
Upvotes: 3
Views: 5676
Reputation: 984
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
Use this with Theme holo **you have to do it through coding add this before setContentView() **
Upvotes: 10