NumberPicker文字颜色

时间:2013-08-08 07:59:18

标签: android numberpicker

我有一个ListView,每行包含TextViewNumberPicker。 每当我启动活动时,NumberPicker的数字都是白色(与背景颜色相同)。

我尝试按照建议hereherehere应用样式;无济于事。

还有其他建议吗?

-

NumberPicker.xml

<NumberPicker 
    android:id="@+id/npMaterialAmount"
    android:layout_alignParentRight="true"
    android:layout_width="wrap_content"
    android:layout_height="75dp"
    style="@style/npColour"/>

-

尝试过的风格1:

<style name = "npColour" >
    <item name = "android:textColor">#000000</item>
</style>

-

尝试过样式2:

<style name = "npColour" parent ="@android:style/Theme.Holo.Light">
</style>

-

...列表继续......

2 个答案:

答案 0 :(得分:2)

我知道这个问题已经过时了。我在这里找到了答案:Change the text color of NumberPicker

拷贝:

  

此代码可以解决您的问题。您遇到的问题是因为在构造NumberPicker期间,它捕获EditText textColor并分配给一个绘画,以便它可以使用相同的颜色绘制编辑文本上方和下方的数字。

import java.lang.reflect.Field;

public static boolean setNumberPickerTextColor(NumberPicker numberPicker, int color)
{
    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();
                return true;
            }
            catch(NoSuchFieldException e){
                Log.w("setNumberPickerTextColor", e);
            }
            catch(IllegalAccessException e){
                Log.w("setNumberPickerTextColor", e);
            }
            catch(IllegalArgumentException e){
                Log.w("setNumberPickerTextColor", e);
            }
        }
    }
    return false;
}

答案 1 :(得分:-3)

您使用的是Formatter吗?我不得不使用setDisplayedValues来解决问题。 我假设你已经解决了这个问题,但无论如何我发布了这个问题,我一个人绝望地寻找答案,偶然解决了。

    NumberPicker numberPicker = new NumberPicker(getActivity());
    numberPicker.setMinValue(0);
    numberPicker.setMaxValue(5);     
    String[] periodicityValues = {"Semanal", "Mensal", "Bimestral", "Trimestral", "Semestral", "Anual"};
    numberPicker.setDisplayedValues(periodicityValues);