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 class SettingsActivity extends PreferenceActivity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preference);
Preference pref = findPreference("key");
pref.getView().setVisibility(View.GONE);
//not necessarily setVisibility, i hope you get my point
}
}
I only found this method: getView (View convertView, ViewGroup parent). But it seems confusing to me, that if i want to get View of my preference, i need to provide view and viewGroup as parameters??
Could someone explain how to use this method, or point me to another method to get View from my Preference instance.
PS: if possible, i would rather NOT extend Preference class, but i dont mind it if necessary
To get the view of a desired preference you can use this:
@Override
public void onWindowFocusChanged(boolean hasFocus)
{
super.onWindowFocusChanged(hasFocus);
Preference preference=findPreference(“preferenceKey”);
View preferenceView=getListView().getChildAt(preference.getOrder());
//Do your stuff
}
Note: You can not do this in the onCreate
method because it will throw a NullPointerException
.
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
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With