Any idea why having multiple SwitchPreferences in a PreferenceScreen would create an issue whereby if you select any of the boxes it causes the other boxes to change? This issue occurs when testing on a Nexus 4 running 4.2.2 but not on a Galaxy S3 running 4.0.4. Thanks for any assistance you can provide.
<?xml version="1.0" encoding="utf-8"?>
<PreferenceCategory android:title="@string/description_photo_preference">
<SwitchPreference
android:key="use_gallery"
android:title="@string/title_use_gallery_preference"
android:summaryOff="@string/summary_dont_use_gallery_as_photo_source"
android:summaryOn="@string/summary_use_gallery_as_photo_source"
android:defaultValue="true"
/>
<SwitchPreference
android:key="use_camera"
android:title="@string/title_use_camera_preference"
android:summaryOff="@string/summary_dont_use_camera_as_photo_source"
android:summaryOn="@string/summary_use_camera_as_photo_source"
android:defaultValue="true"
/>
<SwitchPreference
android:key="show_last_vin"
android:title="@string/pref_string"
android:summaryOff="@string/pref_display__false"
android:summaryOn="@string/pref_display_true"
android:defaultValue="true"
/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/description_photo_quality_settings">
<ListPreference
android:key="prefPhotoQuality"
android:entries="@array/photo_quality_settings"
android:summary="@string/pref_user_photo_quality_settings"
android:entryValues="@array/photo_quality_settings_values"
android:title="@string/description_photo_quality_settings" />
</PreferenceCategory>