Reputation: 806
I want to know how can I get position of status bar? On my included screenshot status bar is on bottom of screen, together with navigation bar. How can I check it programmatically? In activity or fragment.
Question: how can I know when status bar is on TOP of screen or at BOTTOM of screen?
// Anyone who knows how can I resolve my problem?
Upvotes: 0
Views: 150
Reputation: 21
You can use :
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"
Upvotes: 1
Reputation: 103
Ypu could just try to Hide that bar using the following line of code !
<application
...
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
...
</application>
Upvotes: 1