Android消息提示框和对话框

参考 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


你可能感兴趣的:(Android)