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

第一步:

在styles.xml增加如下:

   



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

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

你可能感兴趣的:(Android界面和组件)