我也正好做了一篇自定義的時間選擇器,大家可以看看 http://blog.csdn.net/demo006/article/details/73571956
2017-06-23
翻至上一頁,本月天數字體不變
解決方案:
if (date.getMonth() == calendar.getTime().getMonth()) {
tvCalendarDate.setTextColor(Color.parseColor("#000000"));
} else {
tvCalendarDate.setTextColor(Color.parseColor("#999999"));
}
解決方案:
if (date.getMonth() == calendar.getTime().getMonth()) {
tvCalendarDate.setTextColor(Color.parseColor("#000000"));
} else {
tvCalendarDate.setTextColor(Color.parseColor("#999999"));
}
2017-06-16