android主题Theme.NoTitleBar.Fullscreen下如何设置程序的字体颜色为黑色

来源:互联网 发布:jdk 8u25 windows x64 编辑:程序博客网 时间:2024/05/29 13:42

第一步:

在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" >

0 0
原创粉丝点击