Je veux être en mesure de rendre un TextView en gras. Voilà comment je suis en train de son apparence (je dois le faire en code):Comment rendre un TextView gras?
nameText.setTextAppearance(getApplicationContext(), R.style.BlueText);
priceText.setTextAppearance(getApplicationContext(), R.style.BlueText);
changeText.setTextAppearance(getApplicationContext(), R.style.BlueText);
Voici mon style.xml
<!-- Blue Color -->
<style name="BlueText">
<item name="android:textColor">#4871A8</item>
</style>
Comment puis-je assurer que mon TextView est en gras?