2

is it possible to hide status bar:

enter image description here

And show action bar without it?

1

2 Answers 2

3

try this..

requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 
Sign up to request clarification or add additional context in comments.

Comments

2

Another way .In your manifest xml, at application level set this:

<activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" /> 

I hope it will works

1 Comment

Doesn't this hide the Title Bar as well?

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.