I want to make my activity full screen with status bar on top of it like this picture:
I have used this code in manifest inside activity
manifest
activity
Add these to your Base Application Theme in styles.xml
styles.xml
true true
And add following attribute to your parent layout:
android:fitsSystemWindows="false"
Hope this helps.