“Android AlertDialog Setsinglechoiceitems” Kod odpowiedzi

Pokaz alarmowy w Android

  AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setMessage(getResources().getString(R.string.do_you_really_want_to_signout));
        builder.setTitle(getResources().getString(R.string.sign_out));
        builder.setCancelable(false);
        builder.setNegativeButton(getResources().getString(R.string.cancel), new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                dialog.cancel();
            }
        });
        builder.setPositiveButton(getResources().getString(R.string.sure), new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                Toast.makeText(AccountActivity.this, R.string.log_out_success,
                        Toast.LENGTH_LONG).show();
               
            }
        });

        AlertDialog alert = builder.create();
        alert.show();
KushalCodes

Android AlertDialog Setsinglechoiceitems

// 1. Instantiate an AlertDialog.Builder
AlertDialog.Builder builder = new AlertDialog.Builder(context);

// 2. Call various setter methods to set the dialog characteristics
builder.setTitle("My Title");
builder.setMessage("My Message");
builder.setPositiveButton("OK", (dialog, which) -> { /* ... */ });
builder.setNegativeButton("Cancel", (dialog, which) -> { /* ... */ });

// 3. Instantiate the AlertDialog
AlertDialog dialog = builder.create();

// 4. Show the AlertDialog
dialog.show();
Merlin4 (ranken)

Odpowiedzi podobne do “Android AlertDialog Setsinglechoiceitems”

Pytania podobne do “Android AlertDialog Setsinglechoiceitems”

Więcej pokrewnych odpowiedzi na “Android AlertDialog Setsinglechoiceitems” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu