This is my xml code in activity_main.xml:
<TextView
    ...
    android:text="@string/already_have_an_account" />
and in strings.xml:
<string name="already_have_an_account">Already have an account? <font color='#FF6200EE'>Log In</font></string>
With this code I can change the color of "Log In" text but I wanna make it bold too in xml code, not Java.
How to achieve that?
 
    