web-dev-qa-db-ja.com

androidでAlertDialogを閉じる方法

4つのボタンを含むAlertDialogを作成しました

OptionDialog = new AlertDialog.Builder(this);
        OptionDialog.setTitle("Options");
        LayoutInflater li = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v = li.inflate(R.layout.options, null, false);
        background = (Button) v.findViewById(R.id.bkgSpinnerLabel);
        SoundVib = (Button) v.findViewById(R.id.SoundVibSpinnerLabel);

        OptionDialog.setView(v);
        OptionDialog.setCancelable(true);
        OptionDialog.setNeutralButton("Ok",
                new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface arg0, int arg1) {
                    }
                });
        background.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                SetBackground();
             // here I want to dismiss it after SetBackground() method 
            }
        });


        SoundVib.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                Intent soundVibIntent = new Intent(SebhaActivity.this, EditPreferences.class);
                startActivity(soundVibIntent);
            }
        });

        OptionDialog.show();

SetBackground()メソッドの後でそれを却下したいのですが、どうすればよいですか?前もって感謝します。

40
Emy Alsabbagh

実際には、AlertDialog.Builderクラスのcancel()またはdismiss()メソッドはありません。

したがって、_AlertDialog.Builder optionDialog_の代わりにAlertDialogインスタンスを使用します。

好む、

_AlertDialog optionDialog = new AlertDialog.Builder(this).create();
_

ここで、optionDialog.dismiss();を呼び出すだけです

_background.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        SetBackground();
        // here I want to dismiss it after SetBackground() method 
        optionDialog.dismiss();
    }
});
_
124
user370305

もっと簡単な解決策があると思います:DialogInterfaceメソッドに渡されるonClick引数を使用するだけです。

AlertDialog.Builder db = new AlertDialog.Builder(context);
        db.setNegativeButton("cancel", new DialogInterface.OnClickListener(){
            @Override
            public void onClick(DialogInterface d, int arg1) {
                d.cancel();
            };  
        });

たとえば、 http://www.mkyong.com/Android/android-alert-dialog-example を参照してください。

58

これを試して:

   AlertDialog.Builder builder = new AlertDialog.Builder(this);
   AlertDialog OptionDialog = builder.create();
  background.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            SetBackground();
       OptionDialog .dismiss();
        }
    });
10
Android_coder

AlertDialog.Builderを終了またはキャンセルするには

dialog.setNegativeButton("إلغاء", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        dialogInterface.dismiss();
                    }
                });

ダイアログインターフェイスでdismiss()を呼び出します

3
Elhassan N

AlertDialogを閉じる方法は次のとおりです。

lv_three.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
            @Override
            public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
                GetTalebeDataUser clickedObj = (GetTalebeDataUser) parent.getItemAtPosition(position);
                alertDialog.setTitle(clickedObj.getAd());
                alertDialog.setMessage("Öğrenci Bilgileri Güncelle?");
                alertDialog.setIcon(R.drawable.ic_info);
                // Setting Positive "Yes" Button
                alertDialog.setPositiveButton("Tamam", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        // User pressed YES button. Write Logic Here
                    }
                });
                alertDialog.setNegativeButton("İptal", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        //alertDialog.
                        alertDialog.setCancelable(true); // HERE

                    }
                });
                alertDialog.show();
                return true;
            }
        });
1
Sam

警告ダイアログを閉じるには2つの方法があります。

オプション1:

AlertDialog#create().dismiss();

オプション2:

The DialogInterface#dismiss();

すぐに使用できるように、フレームワークは、ボタンのイベントリスナーを定義するときにDialogInterface#dismiss();を呼び出します。

  1. AlertDialog#setNegativeButton();
  2. AlertDialog#setPositiveButton();
  3. AlertDialog#setNeutralButton();

警告ダイアログ用。

1
Victor Mwenda