我的应用已应用于统一的橙色主题。现在我需要自定义alertdialog的主题,将橙色应用于其标题和分隔符。我可以更改标题颜色但分隔颜色。那么有什么解决方案吗?提前谢谢。
答案 0 :(得分:0)
试试这个,它对我有用:
final int titleDividerId = getResources().getIdentifier("titleDivider", "id", "android");
final View titleDivider = dialog.findViewById(titleDividerId);
if (titleDivider != null) {
titleDivider.setBackgroundColor(getResources().getColor(R.color.orange));
}