Is there a way to add ImageViews to a PreferenceCategory? How?
I know this solution, but i d like to include a layout to a preferenceCategory.
You have to make your own preference widget by subclassing the android.preference.Preference class (see for instance CheckboxPreference and its source code).
If you goal is to allow choosing an image, see the RingtonePreference class, it allows to pick a ringtone. You could do something similar to pick an image from the gallery.