2016-10-16 114 views
3

我沒有搜索的信息,但沒有造型選項爲我工作。 我只想改變AppCompatSpinner的TextColor。android.support.v7.widget.AppCompatSpinner如何改變文字顏色/風格


使用

compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.support:support-v4:23.4.0' 
compile 'com.android.support:design:23.4.0' 

我如何可以覆蓋使用樣式文字顏色屬性? AppCompatSpinner不方便。此

回答

-3

使用自定義微調,並把一個TextView在您的微調和使用的TextView的id而spinner.setAdapter()方法: -

<?xml version="1.0" encoding="utf-8"?> 

<TextView 
    android:id="@+id/textview" 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:textSize="20sp" 
    android:gravity="left" 
    android:textColor="#FF0000"   
    android:padding="5dip" 
    /> 

使用適配器,以顯示微調: -

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.spinner_item,R.id.textview,list);