There are two ways to make an activity fullscreen,
In your OnCreate method in the activity class,
In your OnCreate method in the activity class,
getWindow().addFlags(LayoutParams.FLAG_FULLSCREEN);
From AndroidManifest.xml:
<activity android:name=" "
---
----
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />