如何在启动Android应用程序时显示对话框

时间:2015-04-28 17:14:34

标签: android alertdialog

启动Android应用程序时如何显示对话框。

这是我的代码:

AlertDialog.Builder swipeAlert;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    swipeAlert = new AlertDialog.Builder(this);
    swipeAlert.setMessage("Swipe to see map");
    swipeAlert.setPositiveButton("OK",null);

但是当我启动我的Android应用程序时,没有任何显示。怎么样?

2 个答案:

答案 0 :(得分:1)

你需要添加

swipeAlert.show();

答案 1 :(得分:0)

您必须调用show方法才能显示它。

最后添加

swipeAlert.show();