Changing Spinner Text Color Based On Background Color
I have a custom spinner layout with an image and a text view but I noticed that depending on the manufacturers skin you cant see the text because of the color ie. white on white, b
Solution 1:
Use the default text color of the current theme (stored in the resource ID android.R.attr.textColorPrimary
) :
<TextView android:id="@+id/icon_txt"
android:textColor="?android:attr/textColorPrimary"
... />
Post a Comment for "Changing Spinner Text Color Based On Background Color"