pop.png

pop.png
左右留邊距的彈窗,總結(jié)注意點(diǎn)
1.布局用
android:paddingLeft="@dimen/dp_10"
android:paddingRight="@dimen/dp_10"
2.寬度撐滿,設(shè)置背景色透明
this.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
//設(shè)置SelectPicPopupWindow彈出窗體的高
this.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
this.setBackgroundDrawable(new ColorDrawable(0x0Dffffff));