1
I am developing an app and obviously it contains many textViews. I noticed that when installing my app on some devices, more specifically on MOTO G2, I noticed that my textViews get weird and does not present the expected layout.
For a better understanding, see an example of the code I made for a textView in xml.
<TextView
android:id="@+id/txtExemplo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/azul"
android:textAppearence="@style/Base.TextAppearance.AppCompat.Headline"
android:text="Exemplo TextView"/>
That is, I define a Style and a color, but specifically in the Moto G2 these properties do not apply. But why?
I don’t have an image to show how the result looks, but I will try to describe:
It has a black border and the inner lining is white. As if it were hollow.
There is also, in accessibility, an option of "Text in high contrast" which adds black borders to the text, I cannot confirm if it replaces the colors
– Lennoard Silva