2016-10-11 17 views
0

スピナーをクリックしたとき、最初の項目の上に白い部分があります。私はこれを解決できません。私は多くの解決策を試しました。Android Spinner項目空白

enter image description here

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" /> 

答えて

0

パディングを削除しようとします。それはすべての面に間隔を与えます。

+0

私は試しましたが、成功しませんでした。 – mobileprogramming

関連する問題