“Zmień kolor spinner kolor Android Kotlin” Kod odpowiedzi

Zmień kolor spinner kolor 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

Zmień kolor spinner kolor 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

Zmień kolor spinner kolor 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

Odpowiedzi podobne do “Zmień kolor spinner kolor Android Kotlin”

Pytania podobne do “Zmień kolor spinner kolor Android Kotlin”

Więcej pokrewnych odpowiedzi na “Zmień kolor spinner kolor Android Kotlin” w Kotlin

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu