我有这个布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<DatePicker
style="@style/MyDatePickerStyle"
android:id="@+id/datePicker"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:calendarViewShown="false"
android:calendarTextColor="@color/Black"
android:headerDayOfMonthTextAppearance="@color/accent_color"
android:background="@color/gray_light_date"
android:headerBackground="@color/app_bar_color"
android:dayOfWeekBackground="@color/app_bar_color"
android:dayOfWeekTextAppearance="@color/Black"
/>
</LinearLayout>
布局使用的样式:
<style name="MyDatePickerStyle" parent="@android:style/Widget.Holo.DatePicker">
<item name="android:headerBackground">@color/ColorPrimary</item>
<item name="android:calendarTextColor">@color/ColorPrimaryDark</item>
<item name="android:dayOfWeekBackground">@color/ColorPrimaryDark</item>
<item name="android:yearListSelectorColor">@color/accent_color</item>
<item name="android:datePickerMode">calendar</item>
</style>
您可以在下面看到此布局生成的屏幕:
我想更改这些月份的文字颜色。
它目前是白色的,我想改变它而不是背景。
我在google上搜索并尝试了很多不同的属性和样式,但我没有成功。
你能帮我吗?
感谢。
答案 0 :(得分:0)
你必须为datePicker小部件android netive变换字体颜色吗?然后你必须在下面提出有助于你的代码。见下文。
DatePicker picker;
ViewGroup childpicker;
childpicker = (ViewGroup) findViewById(Resources.getSystem().getIdentifier("month" /*rest is: day, year*/, "id", "android"));
EditText textview = (EditText) picker.findViewById(Resources.getSystem().getIdentifier("timepicker_input", "id", "android"));
textview.setTextColor(Color.GREEN);
或风格
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.SelectDate" parent=" <at> android:style/Theme.Holo.NoActionBar">
<item name="android:editTextStyle"> <at> style/Widget.EditText.Black</item>
</style>
<style name="Widget.EditText.Black" parent=" <at> android:style/Widget.EditText">
<item name="android:textColor"> <at> color/black</item>
</style>