0
スピナーをクリックしたとき、最初の項目の上に白い部分があります。私はこれを解決できません。私は多くの解決策を試しました。Android Spinner項目空白
Activityクラス:
ArrayAdapter<AramaTuru> adapter = new ArrayAdapter<AramaTuru>(IsyeriAramaActivity.this,R.layout.simple_list_item_arama, listAramaTurleri);
spnAramaSecenekler.setAdapter(adapter);
simple_list_item_arama:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/kirmizi"
android:gravity="center_vertical"
android:padding="5dip"
android:textColor="#FFFFFF"
android:textSize="18dp" />
私は試しましたが、成功しませんでした。 – mobileprogramming