如何在xml或代码中更改TimePicker文本颜色

时间:2013-07-30 12:43:22

标签: android styles

我阅读了有关更改TimePicker文本颜色的this链接,但我没有从中受益

我使用了这段代码

<style name="MyTimePicker1" parent="@android:style/Widget.TimePicker">
        <item name="android:textColor">#000000</item>
    </style>

我收到此错误

error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.TimePicker'.

我也试过这段代码

void applyFontRecursively(ViewGroup parent, Integer textColor) 
    {    
        for(int i = 0; i < parent.getChildCount(); i++)
        {
            View child = parent.getChildAt(i);            
            if(child instanceof ViewGroup) 
            {
                applyFontRecursively((ViewGroup)child, textColor);
            }
            else if(child != null)
            {


                     if(child instanceof TextView)
                    {
                         TextView textView = (TextView) child;
                         textView.setTextColor(textColor);

                    }
            }                
        }
    }

我得到了这个结果

enter image description here

0 个答案:

没有答案