我使用以下代码设置我的微调器:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.country_code_spinner_item,
countrySpinnerOptions){
public View getView(int position, View convertView, ViewGroup parent) {
View v = super.getView(position, convertView, parent);
((TextView) v).setTextColor(Color.parseColor("#808080"));
return v;
}
};
这会将文本的默认颜色指定为“#808080”
现在我还为此微调器实现了 setOnTouchListener 方法。我想要的是虽然最初旋转器的颜色文本是808080.但是在触摸微调器并从列表中选择新文本之后。现在颜色永久变为黑色。
我该如何实现?
由于