亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

泽库县| 马尔康县| 班戈县| 商河县| 沂水县| 庆城县| 儋州市| 海南省| 满洲里市| 衡水市| 恩平市| 鲁山县| 进贤县| 五家渠市| 诸城市| 台南县| 苍山县| 黄平县| 文化| 调兵山市| 镇雄县| 泾川县| 贡山| 潞西市| 华池县| 长治县| 闽清县| 英山县| 辉县市| 灵璧县| 军事| 洪洞县| 哈巴河县| 小金县| 泉州市| 依兰县| 永平县| 淳安县| 伽师县| 浙江省| 桂平市|