Android Studio 學習第三天 提示框的使用
阿新 • • 發佈:2018-12-12
提示框 AlertDialog
1. 格式
new AlertDialog.Builder(Activity){ .setTitle(提示名稱) .setMessage(提示內容) .setPositiveButton(第一個按鈕名稱,new DialogInterface.OnclickListener(){ 第一個按鈕監聽事件 }) .setNegativeButton(第二個按鈕名稱,第二個按鈕監聽事件) .show(); }
2.程式碼
new AlertDialog.Builder(MainActivity.this) .setTitle("系統提示") .setMessage("確定要進入?") .setPositiveButton("確定", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { Toast.makeText(MainActivity.this, "確定", Toast.LENGTH_SHORT).show(); } }) .setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { Toast.makeText(MainActivity.this, "取消", Toast.LENGTH_SHORT).show(); } }) .show();