Above action bar, white color is displaying. I want to fix that one. Please check attached image file.
Thanks in Advance Image Here
Above action bar, white color is displaying. I want to fix that one. Please check attached image file.
Thanks in Advance Image Here
On
However if you want to hide those Action Bar or Status Bar, this would help
add this line into your style resources file.
<style name="AppFullScreenTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
and then make sure you change the theme in your AndroidManifest file.
Example
<activity android:name=".MainActivity"
android:label="@string/mainPageName" //Your Activity Name
android:theme="@style/AppTheme.NoActionBar"> //Change HERE
</activity>
Try this: