我希望能够使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以粗体显示?
答案 0 :(得分:10)
<!-- Blue Color -->
<style name="BlueText">
<item name="android:textColor">#4871A8</item>
<item name="android:textStyle">bold</item>
</style>
答案 1 :(得分:0)
在相关的说明中,如果你想在没有任何XML的情况下做同样的事情,你可以这样做:
TextView myText = new TextView(this);
myText.setTextColor(Color.BLUE);
myText.setTypeface(Typeface.DEFAULT_BOLD);