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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.