Articles, tutoriels et cours pour la programmation sur système Android, le développement d'applications mobiles. Android – Hidding the status and title bar of your application. An Android application provides a titlebar.
The Android platform provides a statusbar. If you desire to hide them you can do this either via code or via the theme setting in your “AndroidManifest.xml”. To hide the titlebar of your application you can use the predefined style android:theme=”@android:style/Theme.NoTitleBar”. If you also want to hide the statusbar of your application use android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”. For example in my Android development tutorial : App Components.