Remove the title bar from the Android app. Remove the title bar from the android app.

Source: Internet
Author: User

Remove the title bar from the Android app. Remove the title bar from the android app.

1. Implement in code

This. requestWindowFeature (Window. FEATURE_NO_TITLE); // remove the title bar. this indicates the current Activity.

This code must be added before setContentView.

This. requestWindowFeature (Window. FEATURE_NO_TITLE); setContentView (R. layout. activity_main );View Code

2. Implement in the configuration file

<Application android: icon = "@ drawable/icon" android: label = "@ string/app_name" android: theme = "@ android: style/Theme. NoTitleBar">View Code

In this way, the entire application has no title bar. If you need to set a form without a title bar in an Activity, you just need to set android: theme = "@ android: style/Theme above. noTitleBar "can be written to an Activity.

3. Define in the style. xml file

<? Xml version = "1.0" encoding = "UTF-8"?> <Resources> <style name = "notitle"> <item name = "android: windowNoTitle"> true </item> </style> </resources>View Code

Then reference

<Application android: icon = "@ drawable/icon" android: label = "@ string/app_name" android: theme = "@ style/notitle">View Code <application android: icon = "@ drawable/icon" android: label = "@ string/app_name" android: theme = "@ style/notitle">View Code

In fact, the second and third methods are essentially the same, and the third method will be larger.

 

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.