设置 DialogFragment 的背景颜色透明

Android 开发中,能否设置 DialogFragment 的背景颜色?

系统默认的过于深了,非常不友好。

解决方案:
1.在DialogFragment的onCreateView里面设置,可以将对话框内部的背景设为透明
getDialog().getWindow().setBackgroundDrawable(newColorDrawable(Color.TRANSPARENT));

2.在DialogFragment的onstart里面设置,可以将对话框外部的背景设为透明
@Override
	public void onStart() {
		// TODO Auto-generated method stub
		super.onStart();
		
		Window window = getDialog().getWindow();
		WindowManager.LayoutParams windowParams = window.getAttributes();
		windowParams.dimAmount = 0.0f;
		
		window.setAttributes(windowParams);
	}


你可能感兴趣的:(安卓技术)