我正在编写SDK 10+的应用程序。我希望我的活动中的所有复选框以及我的PreferenceActivity看起来都一样。我创建了一个具有Theme.Black父级的主题。我创建了android的一个子样式:Widget.CompoundButton.CheckBox并将android:checkboxStyle设置为该子主题。我已经在应用程序清单元素中的整个应用程序中应用了我的主题:
android:theme="@style/AppTheme"
当我查看主Activity时,复选框样式已按预期应用,但PreferenceActivity中的复选框没有样式。我的问题是:
我知道嵌套首选项存在问题,但此问题适用于顶层的首选项。任何帮助是极大的赞赏。我一直在这个墙上敲我的头几个小时了......
这是我到目前为止所做的:
的prefs.xml
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:key="checkbox1"
android:summary="This is a themed checkbox preference"
android:title="Checkbox 1" />
</PreferenceScreen>
ThemedPreferenceActivity.java
public class ThemedPreferencesActivity extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.prefs);
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<CheckBox
android:id="@+id/checkBox1"
android:text="CheckBox"
android:checked="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" style="@style/AppTheme.Preference.Checkbox" />
</LinearLayout>
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
style.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Black">
<item name="android:checkboxStyle">@style/AppTheme.Preference.Checkbox</item>
</style>
<style name="AppTheme.Preference.Checkbox" parent="android:Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/pref_checkbox</item>
<item name="android:background">#FF0000</item>
</style>
</resources>
pref_checkbox.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true" android:drawable="@android:drawable/ic_menu_call" />
<item android:state_checked="false" android:drawable="@android:drawable/ic_menu_camera" />
</selector>
答案 0 :(得分:2)
看起来问题出在这一行:
<style name="AppTheme.Preference.Checkbox" parent="android:Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/pref_checkbox</item>
<item name="android:background">#FF0000</item> <---- RIGHT HERE
</style>
看起来像是指定导致复选框行为异常。事实证明我无论如何都不需要(事实上,如果我想要的话,我会以“ListView”的方式实现它)所以问题解决了。