Possible Duplicate:
Change icons of checked and unchecked for Checkbox for Android
customize check box preference
Is there any way to customize style of elements in PreferencesActivity
?
I was only able to change color text, background etc.
I want to also change the check mark and radio button style in CheckBoxPreference
and so on.
I'm interesting in API8 or greater.
Thanks for your help!
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:defaultValue="true"
android:key="vibrate"
android:summary="summary"
android:title="Some title"
android:widgetLayout="@layout/custom_checkbox" />
<CheckBoxPreference
android:defaultValue="true"
android:key="autorotate"
android:summary="summary"
android:title="auto rotate" />
</PreferenceScreen>