anyone has had this issue? I am making an android app and my text within textview is a light grey. It is not very visible, but that is the effect I want. When I look at my emulator it is fine, but when i upload the app to my android device, the text is corrected and now appears as white with a black outline. I don't want this. I want the light grey color...
here is the actual code for the full layout for those asking:
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_splash_screen" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="20dp" android:layout_gravity="center" android:background="#ffffff" ><TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="some text here" android:textColor="#888888" /> </RelativeLayout>