5

なぜこれが起こっているのかわかりません。次のコードがあります。

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

builder.setTitle("Title");
builder.setSingleChoiceItems(R.array.example_arrays, 1, null);              
builder.setNegativeButton("Cancel", null);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
        Toast.makeText(SettingsActivityNew.this, "which: " + which, Toast.LENGTH_LONG).show();
    }
});
builder.show();

奇妙な理由で、int が -1 を返し続けます。なぜこうなった?

4

1 に答える 1

13

ドキュメントから:

Parameters
dialog  The dialog that received the click.
which   The button that was clicked (e.g. BUTTON1) or the position of the item clicked.


BUTTON_POSITIVE :

public static final int BUTTON_POSITIVE

Added in API level 3
The identifier for the positive button.

Constant Value: -1 (0xffffffff)

それは奇妙ではありませんが、完全に正常です。ダイアログの をクリックしたため、毎回-1を取得しpositiveButtonます:)

于 2013-04-26T18:32:30.557 に答える