Please have a look on the image:

There is an item rounded with red color on the right pane. This is a PreferenceScreen item. I need to show another my own view after clicking on this item. See next screen please:
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 can make really minimal subclasses of the neccessary
Preferenceclasses where you set your own layout viasetLayoutResource()in the constructor and bind anything you need to pass in with xml parameters by overriding theonBindView(View)method.These can then be used inside a
PreferenceScreenin xml by using the fully qualified<com.mypackage.mypreference/>tagIf you find yourself making a lot of different views you might want to reconsider, because although settings can reasonably stand some theming. It probably shouldn’t get too “widget-y”.