在android中,我使用的是默认的CalendarView。 我将背景设置为浅灰色。但我可以更改日历视图月份视图的颜色吗?
答案 0 :(得分:12)
正如您所知,TextView是私有的,似乎没有任何方法可以访问它。
虽然我不推荐它,但您可以使用java.lang.reflect
包完成此操作:
try
{
CalendarView cv = (CalendarView) this.findViewById(R.id.calendarView1);
Class<?> cvClass = cv.getClass();
Field field = cvClass.getDeclaredField("mMonthName");
field.setAccessible(true);
try
{
TextView tv = (TextView) field.get(cv);
tv.setTextColor(Color.RED);
}
catch (IllegalArgumentException e)
{
e.printStackTrace();
}
catch (IllegalAccessException e)
{
e.printStackTrace();
}
}
catch (NoSuchFieldException e)
{
e.printStackTrace();
}
答案 1 :(得分:6)
在Android 5.x上我使用了以下解决方案(它也适用于旧版本):
CalendarView cv = (CalendarView) this.findViewById(R.id.calendarView1);
ViewGroup vg = (ViewGroup) cv.getChildAt(0);
View child = vg.getChildAt(0);
if(child instanceof TextView) {
((TextView)child).setTextColor(getResources().getColor(R.color.black));
}
可以找到calendarview的布局here,并根据月份名称TextView是布局中的第一个子项。