Android: Make characters bold in xml
4 answers
I think you cannot do this in the string.xml file.
but you can set textStyle = "bold" where you use it.
as -
<TextView android:textSize="18dip" android:layout_height="wrap_content" android:layout_width="wrap_content" android:textColor="@color/white" android:textStyle="bold" android:text="@string/Help" android:id="@+id/header"> </TextView>
+1