android主题Theme.NoTitleBar.Fullscreen下如何设置程序的字体颜色为黑色 分类: Android界面和组件 2014-06-21 14:04 162人阅读 评论(0) 收藏

第一步:

在styles.xml增加如下:

    <style name="CustomActivityTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen">
        <item name="android:textColor">#000000</item>
    </style>



第二步:AndroidManifest.xml中将应用的主题设置成自己定义的一个继承了Theme.NoTitleBar.Fullscreen的主题

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        
        android:theme="@style/CustomActivityTheme" >

版权声明:本文为博主原创文章,未经博主允许不得转载。

posted @ 2014-06-21 14:04  leansmall  阅读(434)  评论(0)    收藏  举报