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

溫馨提示×

如何使用AlertDialog.Builder設置標題

小樊
83
2024-10-12 21:02:23
欄目: 編程語言

要使用AlertDialog.Builder設置標題,請遵循以下步驟:

  1. 首先,確保在您的項目中導入必需的包:
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
  1. 在您的Activity中創建一個方法,例如showDialog(),用于創建和顯示AlertDialog:
public void showDialog() {
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle("您的標題"); // 在這里設置標題
    builder.setMessage("您的消息"); // 在這里設置對話框的消息

    // 設置PositiveButton(確定按鈕)
    builder.setPositiveButton("確定", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            // 處理PositiveButton的點擊事件
        }
    });

    // 設置NegativeButton(取消按鈕)
    builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            // 處理NegativeButton的點擊事件
        }
    });

    // 創建并顯示AlertDialog
    AlertDialog alertDialog = builder.create();
    alertDialog.show();
}
  1. 在您的Activity布局中添加一個按鈕,單擊該按鈕時將顯示AlertDialog:
<Button
    android:id="@+id/button_show_dialog"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="顯示對話框" />
  1. 最后,在onCreate()方法中為按鈕設置OnClickListener,并調用showDialog()方法:
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button buttonShowDialog = findViewById(R.id.button_show_dialog);
    buttonShowDialog.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            showDialog();
        }
    });
}

現在,當您運行應用程序并單擊“顯示對話框”按鈕時,將顯示一個帶有指定標題的AlertDialog。

0
宜兰县| 湛江市| 大渡口区| 潞城市| 馆陶县| 宕昌县| 梓潼县| 远安县| 宁武县| 兴业县| 盘锦市| 潮州市| 四平市| 莒南县| 夏河县| 涿鹿县| 南丰县| 高要市| 贡觉县| 河西区| 宁晋县| 孝昌县| 阳江市| 凤凰县| 泸定县| 大姚县| 松桃| 桑日县| 五指山市| 伽师县| 姚安县| 常宁市| 任丘市| 上林县| 社会| 华坪县| 阜阳市| 桃园市| 桓台县| 铜川市| 平泉县|