Transfer from http://blog.csdn.net/liuzhidong123/article/details/7818531
Now I firmly believe that writing a technical blog is a great help to yourself, blogging to give yourself a chance to learn and think.
There are three ways to get rid of the title bar in Android, and they have their own characteristics.
1. Implement in Code
this. requestwindowfeature (Window.feature_no_title); // Remove title bar
Remember: This code should be written in front of Setcontentview ().
2. Implemented in the manifest file (manifest.xml)
<android:icon= "@drawable/icon" android:label= "@string/app_ Name " android:theme=" @android: Style/theme.notitlebar ">
This can be used to set the entire application to no title bar, if only one activity is set to a untitled bar form, as long as the above the third line of code written to a certain activity inside it.
3. Defined in the Style.xml file
<?XML version= "1.0" encoding= "UTF-8"?> <Resources> <stylename= "Notitle"> <Itemname= "Android:windownotitle">True</Item> </style> </Resources>
Then the face manifest.xml in the reference, this method is slightly more troublesome.
<android:icon= "@drawable/icon" android:label= "@string/app _name " android:theme=" @style/notitle ">
In fact, it can be seen that the second method is essentially the same as the third method, But the second method calls the system-defined Style.xml file, and the third method is to define the Style.xml in its own application, and then call it by itself, in fact, the truth is the same, the third way to do more sense of accomplishment.
How to get rid of the title bar in Android apps