去掉dialog上面的蓝色线

dialog自带title divider  ,设置为透明即可

int dividerID=context.getResources().getIdentifier("android:id/titleDivider", null, null);
            View divider=findViewById(dividerID);
            divider.setBackgroundColor(Color.TRANSPARENT);
 

猜你喜欢

转载自blog.csdn.net/Lin_XiJun/article/details/85700538