android - Loading a preference on checkboxpreference click event -



android - Loading a preference on checkboxpreference click event -

i want load set of preferences(below) on checkboxpreference/switchpreference on corresponding click event.

my checkboxpreference follows:

<?xml version="1.0" encoding="utf-8"?> <preferencescreen xmlns:android="http://schemas.android.com/apk/res/android" > <checkboxpreference android:defaultvalue="true" android:key="email_preference_checkbox" android:summary="@string/pref_description_social_recommendations" android:title="@string/pref_title_social_recommendations"> </checkboxpreference> </preferencescreen>

the preference want load follows:

<?xml version="1.0" encoding="utf-8"?> <preferencescreen xmlns:android="http://schemas.android.com/apk/res/android" > <edittextpreference android:capitalize="words" android:defaultvalue="@string/default_i" android:inputtype="textcapwords" android:key="d_i_key" android:maxlines="1" android:selectallonfocus="true" android:singleline="true" android:title="@string/i_view" /> <edittextpreference android:capitalize="words" android:defaultvalue="@string/de_name" android:inputtype="textcapwords" android:key="d_i_key" android:maxlines="1" android:selectallonfocus="true" android:singleline="true" android:title="@string/u_view" /> <edittextpreference android:capitalize="words" android:defaultvalue="@string/de_d" android:inputtype="textcapwords" android:key="e_d_key" android:maxlines="1" android:selectallonfocus="true" android:singleline="true" android:title="@string/pa_iew" /> </preferencescreen>

is there way can ? looking @ options preference.onpreferencechangelistener couldn't find way load preferences. preference want load on click event, had loaded using preferencefragment.

edit: can see there 2 click event getting fired. 1 enabling/disabling check box , other on clicking of preference (similar switchpreference in android->settings->wifi). want similar that.

thanks.

android android-preferences

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -