我已经实现了一个自定义日期选择器,其中我需要为其中的数字选择器(日期选择器使用内部的数字选择器)设置自定义颜色,如下所示:
在这个答案的帮助下,我可以让它看起来像这样:
但是正如您所看到的,实际日期以黄色而不是白色显示。 此外,我尝试在运行时这样做:
npMonth.setOnValueChangedListener(new OnValueChangeListener() {
@Override
public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
EditText et = ((EditText) npMonth.getChildAt(0));
et.setTextColor(getResources().getColor(R.color.gold));
}
});
但还是没有运气。
如何仅将中心文本颜色更改为白色并保持顶部和底部文本为黄色?
最简单的方法
setNumberPickerTextColor(mNumberPicker);
public void setNumberPickerTextColor(NumberPicker numberPicker){
int color=Color.parseColor("#333333");
final int count = numberPicker.getChildCount();
for(int i = 0; i < count; i++){
View child = numberPicker.getChildAt(i);
if(child instanceof EditText){
try{
Field selectorWheelPaintField = numberPicker.getClass().getDeclaredField("mSelectorWheelPaint");
selectorWheelPaintField.setAccessible(true);
((Paint)selectorWheelPaintField.get(numberPicker)).setColor(color);
((EditText)child).setTextColor(color);
numberPicker.invalidate();
}
catch(NoSuchFieldException e){
Log.e("setNumberPickerColor1", ""+e);
}
catch(IllegalAccessException e){
Log.e("setNumberPickerColor2", ""+e);
}
catch(IllegalArgumentException e){
Log.e("setNumberPickerColor3", ""+e);
}
}
}
}