Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android get view of Preference in PreferenceActivity

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

like image 636
hendrix Avatar asked Dec 08 '11 13:12

hendrix


2 Answers

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.

like image 96
Thunder Avatar answered Sep 17 '22 00:09

Thunder


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 
});
like image 35
soren.qvist Avatar answered Sep 18 '22 00:09

soren.qvist