<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> <activity android:name=".A" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
you can add this line android: theme = "@android: style / Theme.Black.NoTitleBar.Fullscreen" to the manifest and make your application full-screen and without a title, and if you want to remove only the title bar and do not want the application to be fully displayed, you can use Theme.NoTitleBar
source share