自定义弹出框去黑色背景

AlertDialog.Builder deviceAdd =  new AlertDialog.Builder(this.activityContext,AlertDialog.THEME_HOLO_LIGHT);
		deviceAdd.setView(view); 
		this.dialog = deviceAdd.show(); 
加上 
AlertDialog.THEME_HOLO_LIGHT 解决黑色背景的问题

你可能感兴趣的:(自定义弹出框去黑色背景)