91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何監聽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
哈巴河县| 娄底市| 西乌珠穆沁旗| 乐山市| 莱芜市| 抚州市| 多伦县| 香港| 安宁市| 瑞金市| 屯昌县| 栾川县| 定日县| 包头市| 阳信县| 道孚县| 甘泉县| 石阡县| 秦安县| 禄丰县| 安仁县| 屏山县| 遂川县| 淅川县| 汪清县| 北辰区| 库车县| 自贡市| 兰考县| 西丰县| 同德县| 沙洋县| 罗城| 宁阳县| 蓬安县| 时尚| 灌云县| 云梦县| 乌鲁木齐市| 五大连池市| 柯坪县|