android Dialog 自定义style常规属性设置

//backgroundDimEnabled 赋值为true(默认为true)的时候,当dialog弹出的时候,其余地方变暗,赋值为false的时候其余地方正常显示
true
//windowFullscreen 是否全屏显示,“true”为全屏,“false”为不全屏
false
//windowNoTitle 是否显示标题,“true”为显示,“false”为不显示
true
//windowContentOverlay 是否设置window上的覆盖悬浮的东西,不需要的话就设置@null,需要的话就设置一些资源图片
@null
//windowIsTranslucent 窗口是否透明显示
true
//windowBackground 窗口背景设置 
@android:color/transparent
//是否悬浮在窗口上
true
//是否设置边框
@null
//是否有弹出动画
@style/PopupAnimation
//backgroundDimAmount 值的范围是“0.0~1.0”这个属性跟“backgroundDimEnabled”息息相关,当“backgroundDimEnabled”设置为“true”时,它才能生效,值越大背景颜色越暗,当为“1.0”的时候背景全黑
0.5

你可能感兴趣的:(android Dialog 自定义style常规属性设置)