0

我有一个 PreferenceScreen ,其中有一个带有以下代码的复选框:

<CheckBoxPreference
        android:defaultValue="false"
        android:key="the_key"
        android:summary="Random text here."
        android:title="My Title"
        />

我希望在单击此复选框时显示一条弹出消息,该复选框将具有一个设置按钮和一个取消。如果将按下“设置”,则如果先前未选中复选框,则将选中该复选框,反之亦然。我怎样才能做到这一点?这是我的弹出消息的代码。

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {

    // Use the Builder class for convenient dialog construction
    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    builder.setMessage("Some message that will be displayed")
            .setPositiveButton(R.string.set, new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    // do something
                }
            })
            .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    // User cancelled the dialog
                }
            });
    // Create the AlertDialog object and return it
    return builder.create();
}

另外我怎样才能得到我的复选框的值(选中与否)?谢谢!!

4

1 回答 1

0

要从 CheckBoxPreference 中选中或不选中复选框,请使用此

CheckBoxPreference pref = (CheckBoxPreference) findPreference("checkbox_preference");
pref.isChecked(); //returns if it is checked or not
于 2015-02-24T14:20:56.437 回答