How to get rid of the title bar in Android apps

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.