2017-10-04 217 views
-4

如何更改微調器的文本顏色,即下拉按鈕左側的文本? (「丹麥」在picure)如何更改微調器所選項目的顏色

enter image description here

+0

我不知道爲什麼所有的向下票 - 這似乎是一個合理的問題給我。我不知道答案,但我知道要問什麼。這可能有所幫助:https://stackoverflow.com/questions/13703233/style-android-spinner –

回答

0

你一定要試試這樣

public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) { 
    TextView selectedText = (TextView) parent.getChildAt(0); 
    if (selectedText != null) { 
     selectedText.setTextColor(Color.RED); 
    } 
} 
+0

工作得很好:) – Andreisk

+0

它的罰款嗎? – Raja

相關問題