Answers for "spinner field text color android"

0

change spinner text color android kotlin

<Spinner
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/spinner"
    android:textSize="20sp"
    android:entries="@array/planets"/>
Posted by: Guest on June-17-2020
-1

change spinner text color android kotlin

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="20sp"
    android:textColor="#ff0000" />
Posted by: Guest on June-17-2020

Browse Popular Code Answers by Language