tvName is TextView control, the color of "World" has changed, but color of "Paul" hasn't changed, why?
And more, in Android Studio 3.1.3, I get the prompt "'fromHtml(String!): Spanned!' is deprecated. Deprecated in Java" , how can I fix it? Now I use Android Studio 3.1.3 with Kotlin 1.2.50
Image
<string name="aa">
Hello <font color='#0000FF'>Paul </font> !
</string>
val s=mContext.getString(R.string.aa)+" Hello <font color='#0000FF'>World </font>"
tvName.text= Html.fromHtml(s)