Reputation: 741
SpannableStringBuilder decorations not working in some devices . I am setting typeface, font color using SpannableStringBuilder in java code and setting in the textview .
Upvotes: -2
Views: 142
Reputation: 741
This is happening because android:textAllCaps="" attribute removes the string decorations done using SpannableStringBuilder in some devices like Moto series. Remove the android:textAllCaps attribute
Upvotes: 2