Android消息提示框和对话框

来源:互联网 发布:淘宝分期付款流程 编辑:程序博客网 时间:2024/05/23 17:59

参考 http://www.cnblogs.com/chunhui588/archive/2010/10/01/android_toast_and_alertdialog.html   Android消息提示框和对话框  有多种样式。


比如我使用最简单的:

       AlertDialog show=new  AlertDialog.Builder(this)       .setTitle("退出播放" )       .setMessage("打开媒体源失败了" )       .setPositiveButton("确定" ,  null )       .show();  
是可以的。


还有

参考 http://stackoverflow.com/questions/11585099/alertdialog-show-new-alertdialog-builderthis-is-undefined和  http://techblogon.com/alert-dialog-with-edittext-in-android-example-with-source-code/#   可以构造  dialog activity


0 0
原创粉丝点击