I am working on application were most of activity are in full screen. so i implemented it with using theme.
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="windowNoTitle">true</item> <item name="windowActionBar">false</item> <item name="android:windowFullscreen">true</item> <item name="android:windowContentOverlay">@null</item> </style> now i stuck with the situation were in one activity i need to show status bar. any buddy know how to forcefully made changes as it first apply the theme so how can i code to forcefully show only status bar not actionbar.
thanks