gpt4 book ai didi

android - android ListView 中的 HTML 文本

转载 作者:搜寻专家 更新时间:2023-11-01 08:59:05 24 4
gpt4 key购买 nike

我想将一个多色(也许是html)文本添加到可点击的android ListView 。

例如: st这可能吗?

最佳答案

是的,这是可能的。

使用 Spannable API。

教程详细解释了如何操作:http://blog.stylingandroid.com/archives/177

只是一些代码来理解:

TextView textView = (TextView)findViewById( R.id.TextView );
Spannable spannable = (Spannable)textView.getText();
StyleSpan boldSpan = new StyleSpan( Typeface.BOLD );
spannable.setSpan( boldSpan, 41, 52, Spannable.SPAN_INCLUSIVE_INCLUSIVE );

关于android - android ListView 中的 HTML 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16759355/

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