Android three ways to implement no title bar fullscreen

Source: Internet
Author: User

One, through the Java code

Prior to Setcontentview execution:

Requestwindowfeature (Window.feature_no_title); // hides the title bar GetWindow (). SetFlags (Windowmanager.layoutparams.flag_fullscreen,windowmanager.layoutparams.flag_ fullscreen); // Hide the status bar

Second, call Android to bring your own theme

Add the activity properties directly in the androidmanifest.xml that require full-screen display

Android:theme= "@android: Style/theme.notitlebar.fullscreen"  //android:theme= " Theme.Light.NoTitleBar.Fullscreen "  //  white background, no title bar, full screen android:theme=" Theme.Black.NoTitleBar.Fullscreen "  //

Three, define your own full screen theme

Define theme in the Style.xml file (if not style.xml, created in the Res/values directory)

<Resources>     <stylename= "Theme.notitle_fullscreen"><!--a custom theme name--<Itemname= "Android:windownotitle">True</Item>            <Itemname= "Android:windowfullscreen">True</Item>          </style> </Resources>

Add the activity properties directly in the androidmanifest.xml that require full-screen display

Android:theme= "@style/theme.notitle_fullscree"

Android three ways to implement no title bar fullscreen

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.