TextViewを太字にできるようにしたい。これは私がそれの外観を設定する方法です(私はこれをコードで行う必要があります):
nameText.setTextAppearance(getApplicationContext(), R.style.BlueText);
priceText.setTextAppearance(getApplicationContext(), R.style.BlueText);
changeText.setTextAppearance(getApplicationContext(), R.style.BlueText);
これが私のstyle.xmlです
<!-- Blue Color -->
<style name="BlueText">
<item name="android:textColor">#4871A8</item>
</style>
TextViewが太字になっていることを確認するにはどうすればよいですか?