如何在Android中更改数字选择器中心文本颜色

zbwhf8kr  于 2023-02-10  发布在  Android
关注(0)|答案(1)|浏览(163)

我已经实现了一个自定义的日期选择器,其中我需要有自定义颜色的数字选择器(日期选择器使用数字选择器内),如下所示:

this answer的帮助下,我可以让它看起来像这样:

但是正如你所看到的,实际的日期显示为黄色而不是白色,而且,我试着在运行时这样做:

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));
            }
        });

但还是没找到。
如何只将中心文本颜色更改为白色,而保持顶部和底部文本为黄色?

yc0p9oo0

yc0p9oo01#

最简单的方法是

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);
            }
        }
    }
}

相关问题