自定义弹出框去黑色背景

来源:互联网 发布:算法导论 第三版 编辑:程序博客网 时间:2024/04/27 20:06
AlertDialog.Builder deviceAdd =  new AlertDialog.Builder(this.activityContext,AlertDialog.THEME_HOLO_LIGHT);deviceAdd.setView(view); this.dialog = deviceAdd.show(); 
加上 
AlertDialog.THEME_HOLO_LIGHT 解决黑色背景的问题
0 0