Junior
Junior

Reputation: 101

How check action bar is visible?

I have to check on my activity the action bar is visible or not. I want to know if you have to pick this property bar action.

Upvotes: 4

Views: 2298

Answers (1)

Dario
Dario

Reputation: 2073

Check value of

getActionBar().isShowing()

http://developer.android.com/reference/android/app/ActionBar.html#isShowing()

Upvotes: 11

Related Questions