Is it possible to have multiple styles inside a TextView?

后端 未结 18 2085
醉梦人生
醉梦人生 2020-11-21 17:34

Is it possible to set multiple styles for different pieces of text inside a TextView?

For instance, I am setting the text as follows:

tv.setText(line         


        
18条回答
  •  没有蜡笔的小新
    2020-11-21 18:07

    Now the element is deprecated. renders as , and renders as .

    tv.setText(Html.fromHtml("bold and italic "));
    

    this works fine for me

提交回复
热议问题