如何更改微调器的选定项的颜色

时间:2017-10-04 14:04:38

标签: android layout styles spinner textcolor

如何更改微调器的文本颜色,即下拉按钮左侧的文本? (图中的“丹麦”)

enter image description here

1 个答案:

答案 0 :(得分: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);
   }
}