首页 > 代码库 > android 修改背景色(转)

android 修改背景色(转)

修改为黑底白字

修改AndroidManifest.xml
把android:theme="@style/AppTheme" 修改为
android:theme="@android:style/Theme.Black“

修改为白底黑字

android:theme="@android:style/Theme.Light“

android 修改背景色(转)