Krisztian
Krisztian

Reputation: 477

Android fullscreen activity with action bar

what theme should I use to hide the notification bar but show the action bar? (Like calculator on Samsung phones)

Upvotes: 3

Views: 5676

Answers (1)

Arun Salaria
Arun Salaria

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

Related Questions