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

溫馨提示×

如何使用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
海口市| 科尔| 通道| 漳州市| 卢氏县| 梁平县| 达州市| 南陵县| 常山县| 巴林左旗| 进贤县| 印江| 阳朔县| 灵丘县| 佛冈县| 扎鲁特旗| 阳春市| 武清区| 来安县| 福贡县| 深州市| 容城县| 阜南县| 乐平市| 万州区| 色达县| 乐至县| 新野县| 夏河县| 荥经县| 进贤县| 德安县| 化德县| 龙胜| 施甸县| 永安市| 海林市| 伊宁市| 津市市| 瑞安市| 大化|