Skip to content Skip to sidebar Skip to footer

Cannot See Selected Text Android Appcompactspinner

I have put an app compact spinner in my application. I am unable to see the selected text(I think this is because the colour of the selected text becomes white, i.e same as the bac

Solution 1:

Hi found out the problem was in the file android.R.layout.simpler_spinner_item as it had not given the text-Color. So I just copied that code and gave a black text-color to it.

spinner_item.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@android:id/text1"
 style="?android:attr/spinnerItemStyle"
 android:singleLine="true"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:ellipsize="marquee"
 android:textColor="#000000"
 android:textAlignment="inherit"/>

Post a Comment for "Cannot See Selected Text Android Appcompactspinner"