Dialog

来源:互联网 发布:中文域名有什么价值 编辑:程序博客网 时间:2024/06/07 07:33

  dialog的应用中的几个用法

public Dialog(Context context, int theme) {    this(context, theme, true);}
Dialog dialog = new Dialog(context,R.style.DialogNormal);设置dialog的样式 
dialog.setCancelable(false); ///  设置是否可以取消  默认为truedialog.setCanceledOnTouchOutside(false);  
点击屏幕其它地方,对话框不消失

0 0