alamkanak / Android-Week-View

Android Week View is an android library to display calendars (week view or day view) within the app. It supports custom styling.
Apache License 2.0
3.42k stars 1.23k forks source link

Set color when click an event #315

Closed zc915232 closed 8 years ago

zc915232 commented 8 years ago

Sorry for bad English. I'd like to set a different color for the event when user click it. But when I click it, it doesn't change. the event only change color after I scroll screen(not when i click it). I don't know why. I hope you can understand this.

@Override public void onEventClick(WeekViewEvent event, RectF eventRect) { if (event.getColor()!=R.color.mediumorchid){ event.getStartTime(); event.setColor(R.color.mediumorchid); }else { event.setColor(0); } }

zc915232 commented 8 years ago

i did it. I add this ViewCompat.postInvalidateOnAnimation(WeekView.this) into onSingleTapConfirmed