启动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应用程序时,没有任何显示。怎么样?
答案 0 :(得分:1)
你需要添加
swipeAlert.show();
答案 1 :(得分:0)
您必须调用show
方法才能显示它。
最后添加
swipeAlert.show();