界面默认是 白色背景 黑色字体,现在加了黑色背景,怎么把字体全部改为白色
------解决方案--------------------
style.xml
<style name="MyTheme" parent="@android:style/Theme.Light">
<item name="android:textColor">#ff0000</item>
</style>
<activity android:theme="@style/MyTheme"
....>
------解决方案--------------------
使用 stylesheet, http://www.developer.nokia.com/Community/Wiki/%E4%BD%BF%E7%94%A8Qt_Style_Sheets%E5%88%B6%E4%BD%9CUI%E7%89%B9%E6%95%88
------解决方案--------------------
main.cpp中:
***
QApplication a(argc, argv);
a->setStyleSheet("color: white;");
***
return a.exec();