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

溫馨提示×

溫馨提示×

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

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

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

分宜县| 崇文区| 宁化县| 夏河县| 余江县| 兴安县| 吴江市| 祁门县| 寻乌县| 望奎县| 巴林左旗| 彩票| 保定市| 海淀区| 东莞市| 长兴县| 清远市| 廊坊市| 通化县| 富平县| 宽甸| 奉化市| 江安县| 手游| 伽师县| 襄汾县| 沭阳县| 怀远县| 白城市| 章丘市| 天门市| 漳平市| 富裕县| 福海县| 仪陇县| 西安市| 清远市| 陈巴尔虎旗| 彝良县| 五河县| 尼勒克县|