23

I have used PreferenceActivity to have preference in my android application. I want one preference say "pref 2" to be enabled when other preference say "pref 1" is NOT checked and "pref 2" to be disabled when "pref 1" is checked. i.e. exactly opposite of the android:dependancy attribute.

How can I do that?

Vasu
  • 4,862
  • 8
  • 42
  • 48

4 Answers4

97

Yes it's possible to do this out of the box. Let's say you want to disable pref2 when pref1 is off
Here's the code(preference xml layout) to put in for pref1:

<CheckBoxPreference
    android:title="Pref1"
    android:key="pref1">
</CheckBoxPreference>

Here's the code(preference xml layout) to put in for pref2:

<EditTextPreference
    android:dialogMessage="Pref 2 dialog"
    android:title="Pref2"
    android:key="pref2" 
    android:dependency="pref1">
</EditTextPreference>

Like sigmazero13 said, by default disableDependentsState is false so you don't need to include it in the pref1 attributes.

serv-inc
  • 35,772
  • 9
  • 166
  • 188
clauziere
  • 1,323
  • 12
  • 20
31

According to the docs here, you can add an attribute to the CheckBoxPreference tag like so:

android:disableDependentsState="true"

By default this is false, which means that the dependents are disabled when the checkbox is unchecked, but by setting it to true, it should have the opposite effect.

Dalija Prasnikar
  • 27,212
  • 44
  • 82
  • 159
sigmazero13
  • 443
  • 4
  • 8
  • 2
    Tested it myself and this does exactly what OP requested, all within the XML =]. – Alejandro Huerta Jun 30 '11 at 21:32
  • 1
    The attribute has to be added to the preference which others depend on, not on the dependent preference. Imho it would have been better if the choice had been done by the dependent preference... what if two dependent preferences need to behave different according to the value of another preference? anyway... – Massimo Jan 26 '17 at 11:38
9

I don't think there's any out-of-the-box solution for it, i.e. an inverted dependancy attribute. But there's always the click-listener:

preference1.setOnPreferenceClickListener(pref1_click);

....

private OnPreferenceClickListener pref1_click = new OnPreferenceClickListener() {
    public boolean onPreferenceClick(Preference preference) {
        preference2.setEnabled(!preference1.isChecked());
        return true;
    }
}
wkpark
  • 115
  • 1
  • 5
David Hedlund
  • 128,221
  • 31
  • 203
  • 222
0

Android CheckBox??


I am assuming you are using the Android.widget.checkBox:

http://developer.android.com/reference/android/widget/CheckBox.html

Try this

 public class MyActivity extends Activity {
     protected void onCreate(Bundle icicle) {
         super.onCreate(icicle);

         setContentView(R.layout.content_layout_id);

         final CheckBox checkBox1 = (CheckBox) findViewById(R.id.checkbox_id);
         if (checkBox1.isChecked()) {
             checkBox2.setChecked(false);
         }
     }
 }

GoodLUCK!!

TheCodeArtist
  • 21,479
  • 4
  • 69
  • 130
  • No I am using android.preference.CheckBoxPreference NOT Android.widget.checkBox. AnyWay Thanks for your concern. – Vasu Apr 20 '10 at 06:55