码迷,mamicode.com
首页 > 其他好文 > 详细

AlertDialog

时间:2015-07-15 15:16:44      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:alertdialog

new AlertDialog.Builder(MainActivity.this)
        .setTitle("Difficulty")
        .setItems(
                new String[]{"easy", "medium", "hard"},
                new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialogInterface, int idx) {
                    //...
                }
            }
        )
        .show();


本文出自 “Frank” 博客,请务必保留此出处http://zengfanhong.blog.51cto.com/8894077/1674865

AlertDialog

标签:alertdialog

原文地址:http://zengfanhong.blog.51cto.com/8894077/1674865

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!