android对话框代码中设置背景为透明

<span style="font-size:18px;">//创建背景透明的对话框 AlertDialog.THEME_HOLO_LIGHT
		AlertDialog.Builder b = new AlertDialog.Builder(myContext.getApplicationContext(), AlertDialog.THEME_HOLO_LIGHT);
		dialog = b.create();  </span>




网上还有一种,但是在android5.0以上,就不能让背景透明了,实际上他们只是让对话框的内容透明

<pre name="code" class="java"><span style="white-space:pre">		</span>//获取dialog的布局属性
		WindowManager.LayoutParams wmParams = dialog.getWindow().getAttributes();
		//wmParams.format = PixelFormat.TRANSPARENT;  内容全透明
		wmParams.format = PixelFormat.TRANSLUCENT;  内容半透明
		wmParams.alpha=0.1f;    调节透明度,1.0最大 
//dialog设置各种属性
dialog.getWindow().setAttributes(wmParams);


 
 


你可能感兴趣的:(背景,dialog,透明,对话框)