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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Button在AlertDialog中的布局

發布時間:2024-08-31 09:01:51 來源:億速云 閱讀:88 作者:小樊 欄目:移動開發

在Android中,要將Button添加到AlertDialog中,您需要使用setPositiveButton()setNegativeButton()setNeutralButton()方法

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("Alert Dialog")
                .setMessage("This is an example of an Alert Dialog with buttons.")
                .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "OK button clicked", Toast.LENGTH_SHORT).show();
                    }
                })
                .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "Cancel button clicked", Toast.LENGTH_SHORT).show();
                    }
                })
                .setNeutralButton("Ignore", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "Ignore button clicked", Toast.LENGTH_SHORT).show();
                    }
                });

        AlertDialog alertDialog = builder.create();
        alertDialog.show();
    }
}

在這個例子中,我們創建了一個帶有標題、消息和三個按鈕(積極的、消極的和中立的)的AlertDialog。當用戶點擊其中一個按鈕時,將顯示一個Toast消息。要顯示此對話框,請在XML布局文件中添加一個Button,并將其android:onClick屬性設置為showAlertDialog

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富阳市| 宁陵县| 平武县| 达尔| 莱阳市| 镇远县| 石首市| 临夏县| 汕尾市| 库尔勒市| 遵义市| 宁安市| 曲麻莱县| 康平县| 娱乐| 中方县| 普兰县| 怀化市| 府谷县| 珲春市| 闽侯县| 郸城县| 曲阳县| 铜山县| 抚顺县| 合作市| 安西县| 屯门区| 凤山市| 丰镇市| 乌恰县| 岳普湖县| 临漳县| 林西县| 江孜县| 西宁市| 凤庆县| 鹤岗市| 五寨县| 珲春市| 东光县|