I have TextView
which shows the following text on the screen:
Like this:
value:
PROMOTION!
How do I:
value:
PROMOTION!
Do you have put bold in just one word of TextView
? That is, I have to do this without having to create 2% with bold , one without bold .
I would like to use only one.
Code:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Valor:\nPROMOÇÃO!"
android:id="@+id/textView"
android:layout_gravity="left|top"
android:layout_marginTop="70dp"
android:layout_marginLeft="15dp"
android:textSize="15dp"
android:textAlignment="center"
android:gravity="center_horizontal"
android:textColor="#42a56b" />