0
當我點擊微調框時,第一項上方有白色區域。我無法解決這個問題。我嘗試了很多解決方案。Android微調項目白色空間
活動類:
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