Is there any possibility to set some text bold. For example:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="all"
android:textColor="#000000"
android:textColorLink="#004c93"
android:text="Hello everyone, I am Max!"/>
"Hello everyone," should have a normal font-style
, but "I am Max!" should be bold.
Is there anyway like in html I can use <strong></strong>
?
I have a text with about 400 rows and the text is located in the values directory and more precisely in the strings.xml
.