gpt4 book ai didi

android - 从字符串更改android textview颜色

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:43 24 4
gpt4 key购买 nike

嘿,我正在创建一个包含来自 json..这很好,但我想改变 TextView 部分的颜色。不知道如何

这是我的详细信息-

JSONArray jArray= new JSONArray(result);

for(int i=0; i<jArray.length();i++)
{
JSONObject getjson=jArray.getJSONObject(i);

s= "Title: " +getjson.getString("tender_title")+
"\n\nTender id: " +getjson.getString("tender_id")+
"\n\nReference no:\n"+getjson.getString("tender_reference_no")+
"\n\nQuantity: " +getjson.getString("tender_item_details_quantity");

}

TextView txt=(TextView) findViewById(R.id.textView1);
txt.setText(s);

上面的代码很好..在 TextView 中设置了所有值,但我想更改 "Title"、"Tender id"、"Quantity" 等的颜色。从上面的字符串 s 请帮忙

最佳答案

您可以将文本设置为html:

txt.setText(Html.fromHtml("your <font color='#FF0000'>content</font>");

关于android - 从字符串更改android textview颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20604893/

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