Android TV fullscreen without title

Source: Internet
Author: User

Want all Windows full-screen untitled, modify

Res\values\styles.xml to set themes and styles

 <resources> <!-- Base application theme, dependent on API level.      This theme was replaced by Appbasetheme from res/values-vxx/ styles.xml on newer devices. --<style name= "Appbasetheme" parent= "Android:Theme.Light" > <!-- Theme Customizati            ONS available in newer API levels can go with res/values-vxx/styles.xml, while  customizations related to        backward- compatibility can go here. -</style> <!--application theme. --<style name= "Apptheme" parent= "Appbasetheme" > <!--Set Untitled--<item name= "Android:win Downotitle >true</item> <!--set Full screen-<item name= "Android:windowfullscreen" >true</ite M> <!--All customizations this is not specific to a particular api-level can go. --</style></resources>      

If you want to set a single window, use the following 2 methods

1. Modify Androidmanifest.xml

        <activity android:name= ". Convert "                   android:label=" @string/app_name "                   android:theme=" @android: style/ Theme.NoTitleBar.Fullscreen ">             <intent-filter>                 <action android:name=" Android.intent.action.MAIN "/>                 <category android:name=" Android.intent.category.LAUNCHER "/>             < /intent-filter>          

Add Android:theme= "@android: Style/theme.notitlebar.fullscreen"

2. Set in code

GetWindow (). SetFlags (Windowmanager.layoutparams.flag_fullscreen,windowmanager.layoutparams.flag_fullscreen); This.requestwindowfeature (Window.feature_no_title);

Android TV fullscreen without title

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.