gpt4 book ai didi

android - 当我使用变量 String 时更改 alertDialog 标题的颜色

转载 作者:行者123 更新时间:2023-11-29 01:14:47 28 4
gpt4 key购买 nike

我刚看到这篇文章 (How can I change the color of AlertDialog title and the color of the line under it),我怀疑我的标题是否有变量……我如何使用第一个解决方案来更改颜色?

这是我的代码:

   AlertDialog.Builder dialogo = new AlertDialog.Builder(ListadoBC.this);
dialogo.setTitle("¡"+listaBC.get(arg2).getFragilidad()+" !\n"+"¿Ha seguido esta recomendación?");

我想要这句话("¡"+listaBC.get(arg2).getFragilidad()+" !\n")使用类似这样的东西显示为红色 () alert.setTitle( Html.fromHtml("<font color='#FF7F27'>Set IP Address</font>")); ...这可能吗?

最佳答案

没有自定义对话框也是可能的,见下面的代码。

Alert.setTitle(getHtmlFormatString("<font color='#FF7F27'>Set IP Address</font>");

getHtmlFormatString() 是将 htmlTag 转换为字符串的方法。

 private Spanned getHtmlFormatString(String htmlTag)
{
Spanned result;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
result = Html.fromHtml(htmlTag,Html.FROM_HTML_MODE_LEGACY);
} else {
result = Html.fromHtml(htmlTag);
}
return result;
}

关于android - 当我使用变量 String 时更改 alertDialog 标题的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40558545/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com