Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道做bold textview -> android:textStyle="bold",但它并没有发生在日文字符中。那么有什么建议吗?
bold textview -> android:textStyle="bold"
在你的 res/values/strings.xml
你可以试试这个想法
<string name="some_japanese"> <![CDATA[<b>日本</b> ]]> </string>
并得到它
textView.setText(Html.fromHtml(getResources().getString(R.string.some_japanese)));