2

TimePicker のテキストの色の変更に関するこのリンクを読みましたが、メリットはありませんでした

このコードを使用しました

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

                    }
            }                
        }
    }

そして、私はこの結果を得る

ここに画像の説明を入力

4

0 に答える 0