You can use the following codes to have a full page in android
Step 1 : Make theme in styles.xml section
<style name="AppTheme.Fullscreen" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
Step 2 : Add theme on AndroidManifest.xml
<activity
android:name=“.Activity”
android:theme="@style/AppTheme.Fullscreen"/>
Step 3 : Java codes section
For example you can added following codes in to the onCreate() method.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);