答案 0 :(得分:2)
只需设置通知的颜色(如https://stackoverflow.com/a/45874836/364388中所述):
InputStream
答案 1 :(得分:1)
通过它查找TextView并使用 SetTextColor 方法设置颜色。恩。如下。
var builder = new AlertDialog.Builder (this);
var dialog = builder.Show();
int textColorId = Resources.GetIdentifier ("alertTitle", "id", "android");
TextView textColor = dialog.FindViewById<TextView> (textColorId);
textColor?.SetTextColor (Color.DarkRed);