“Ändern Sie Spinner Textfarbe Android Kotlin” Code-Antworten

Ändern Sie Spinner Textfarbe Android Kotlin

<Spinner
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/spinner"
    android:textSize="20sp"
    android:entries="@array/planets"/>
Energetic Emu

Ändern Sie Spinner Textfarbe 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" />
Energetic Emu

Ändern Sie Spinner Textfarbe Android Kotlin

ArrayAdapter adapter = ArrayAdapter.createFromResource(this,
R.array.planets_array, R.layout.spinner_item);

adapter.setDropDownViewResource(R.layout.spinner_dropdown_item);
spinner.setAdapter(adapter);
Energetic Emu

Ähnliche Antworten wie “Ändern Sie Spinner Textfarbe Android Kotlin”

Fragen ähnlich wie “Ändern Sie Spinner Textfarbe Android Kotlin”

Weitere verwandte Antworten zu “Ändern Sie Spinner Textfarbe Android Kotlin” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen