0

Android アプリの開発に eclipse を使用しています。アプリケーションのボタンから呼び出し機能がトリガーされたときに、確認用のダイアログ ボックスを作成したいと考えています。

たとえば、ボタン コールを押すとダイアログ ボックスが表示されます 本当に続行しますか? はいといいえで。

今のように、通話用のボタンを押すと、直接自動ダイヤルされます(ダイヤルパッドはありません)

(このコードが原因かどうかはわかりません)

public class AlertDialogManager {
/**
 * Function to display simple Alert Dialog
 * @param context - application context
 * @param title - alert dialog title
 * @param message - alert message
 * @param status - success/failure (used to set icon)
 *               - pass null if you don't want icon
 * */
public void showAlertDialog(Context context, String title, String message,
        Boolean status) {
    AlertDialog alertDialog = new AlertDialog.Builder(context).create();

    alertDialog.setTitle("Title");
    alertDialog.setMessage("Message");
    alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
      public void onClick(DialogInterface dialog, int which) {
        }
    });

    // Showing Alert Message
    alertDialog.setIcon(R.drawable.icon);
    alertDialog.show();
}

}

4

2 に答える 2