I would like to get View instance that is used to display specific Preference in my PreferenceActivity, so i can modify its properties, for example:
public
PreferenceActivity inherits the ListActivity class. ListActivity has a method called getListView() which returns the ListView that displays your preferences.
EDIT: Here is the code in my comment formatted:
getListView().setOnItemClickListener(new AdapterView.OnItemClickListener() {
// ... put listener code here
});