样式.xml:
<resources
xmlns:android="http://schemas.android.com/apk/res/android">
<style name="CustomTheme" parent="@android:style/Theme.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@drawable/bg_repeat</item>
</style>
清单.xml:
<activity android:name="Main" android:theme="@style/CustomTheme"></activity>
主.java:
public void onCreate(Bundle savedInstanceState)
{
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
super.onCreate(savedInstanceState);
在 main.java 我有一个 listPreference。listpreference 的背景颜色在 android 2.3.5 上为白色,在 android 4.0.4 上为蓝色。现在我对列表首选项的字体颜色感到困惑。