Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How check action bar is visible?

Tags:

java

android

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.

like image 388
Junior Avatar asked Dec 25 '22 23:12

Junior


1 Answers

Check value of

getActionBar().isShowing()

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

like image 52
Dario Avatar answered Dec 27 '22 14:12

Dario