中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何監聽AlertDialog的按鈕點擊事件

小樊
86
2024-09-04 16:52:34
欄目: 編程語言

在Android中,您可以使用setPositiveButton()setNegativeButton()方法為AlertDialog設置按鈕及其點擊事件

import androidx.appcompat.app.AppCompatActivity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    public void showAlertDialog(View view) {
        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setTitle("提示");
        builder.setMessage("這是一個AlertDialog");

        // 設置確定按鈕及其點擊事件
        builder.setPositiveButton("確定", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                Toast.makeText(MainActivity.this, "點擊了確定按鈕", Toast.LENGTH_SHORT).show();
            }
        });

        // 設置取消按鈕及其點擊事件
        builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                Toast.makeText(MainActivity.this, "點擊了取消按鈕", Toast.LENGTH_SHORT).show();
            }
        });

        // 創建并顯示AlertDialog
        AlertDialog alertDialog = builder.create();
        alertDialog.show();
    }
}

在這個例子中,我們首先創建了一個AlertDialog.Builder對象。然后,我們使用setPositiveButton()setNegativeButton()方法分別設置確定和取消按鈕及其點擊事件。最后,我們調用create()方法創建AlertDialog對象,并調用show()方法將其顯示出來。

當用戶點擊其中一個按鈕時,相應的onClick()方法將被調用,您可以在該方法中執行所需的操作。

0
七台河市| 上杭县| 蓝山县| 湖口县| 红桥区| 汕头市| 中西区| 梅河口市| 宜宾市| 威宁| 禄劝| 佳木斯市| 新乡市| 石城县| 梅河口市| 滕州市| 如皋市| 永嘉县| 蚌埠市| 丰县| 镇江市| 叶城县| 青神县| 儋州市| 古田县| 玉树县| 南充市| 丹阳市| 台中县| 鹰潭市| 康乐县| 福州市| 安岳县| 股票| 三门峡市| 云和县| 蓝山县| 衡阳县| 达州市| 简阳市| 永平县|