Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing Application in android I want to show AlertDialog if user check the checkboxpreference from preference screen. so how i can do that..?

share|improve this question
It would help significantly if you let us know what technology and platform you are using. Please always provide as much context as you practically can. – Iain Ballard Mar 28 '11 at 9:28
It has an Android tag... – Zsombor ErdÅ‘dy-Nagy Mar 28 '11 at 9:38
possible duplicate of How to open AlertDialog from preference screen? – Roman Nurik Apr 2 '11 at 17:19

2 Answers

up vote 0 down vote accepted

Override onSharedPreferenceChanged in your PreferenceActivity class:

public class MyPreferences extends PreferenceActivity implements OnSharedPreferenceChangeListener {
    ...
    public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
        if (key.equals("MyCheckboxPreferenceKey")) {
            //Show your AlertDialog here!
        }
    }
share|improve this answer
@Dharmendra Be more specific in what "not working". – GrAnd Mar 28 '11 at 11:55

Try this one ...

public class MyPreferences extends PreferenceActivity implements OnSharedPreferenceChangeListener {

      public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen,
                final Preference preference) {

         if(preference.equals("MyCheckboxPreferenceKey")) {

             AlertDialog.Builder builder = new AlertDialog.Builder(this);

         builder.setMessage("Your Message");

         builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {

           public void onClick(DialogInterface dialog, int id) {

             //action on dialog close
           }

         });

         builder.show();

      }


}
share|improve this answer
1  
Thanks it is working @vaibhav – Dharmendra Apr 19 '11 at 7:28
@Dharmendra Actually, this requires a return statement and will require the main part of the method below to be added to cover "unimplemented methods" – TwistedUmbrella Jul 30 '12 at 16:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.