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)));