去除Dialog顶部分割线
去除某些Android手机系统上dialog顶部出现的分割线
Context context = dialog.getContext();
int divierId = context.getResources().getIdentifier("android:id/titleDivider", null, null);
View divider = dialog.findViewById(divierId);
if (divider != null) {
divider.setBackgroundColor(Color.TRANSPARENT);
}
推荐阅读
- 前端代码|前端代码 返回顶部 backToTop
- L3U1P2|L3U1P2 Dialogue(Missing the flight)
- 自定义dialog在xml设置宽高失效的解决
- opencv|图像处理之椒盐噪声的添加与去除
- sed去除文本中的双引号
- ios|ios tableview顶部留白
- alertdialog|alertdialog 自定义view 以及反射
- 怎么去除狐臭,有什么好的方法
- Android|Android 之 ProgressDialog用法介绍(矩形进度条 和 圆形 进度条)
- android|android dialog屏蔽back返回键的解决方法