Android TV 全屏无标题_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android TV 全屏无标题

Android TV 全屏无标题

 2016/7/21 5:31:36  Samdogcom  程序员俱乐部  我要评论(0)
  • 摘要:想要全部窗口全屏无标题,修改res\values\styles.xml可设置主题和样式<resources><!--Baseapplicationtheme,dependentonAPIlevel.ThisthemeisreplacedbyAppBaseThemefromres/values-vXX/styles.xmlonnewerdevices.--><stylename="AppBaseTheme"parent="android:Theme
  • 标签:android 标题

想要全部窗口全屏无标题,修改

res\values\styles.xml 可设置主题和样式

<resources>

    <!--
          Base application theme, dependent on API level. This theme is replaced
          by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
      -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- 设置无标题-->
        <item name="android:windowNoTitle">true</item>
        <!-- 设置全屏-->
        <item name="android:windowFullscreen">true</item>
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

</resources>

 

如果要单个窗口设置用如下2个方法

1. 修改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> 
        </activity> 

即加上 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

 

2. 在代码中设置

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

 

上一篇: 一名VC的自我修养:风口之下如何保持独立思考? 下一篇: 没有下一篇了!
发表评论
用户名: 匿名