SpongeBobSun / mCalendarView

Customizable & Shrinkable Calendar Widget for Android
Apache License 2.0
243 stars 73 forks source link

Shading selected day #13

Closed jcaruso001 closed 8 years ago

jcaruso001 commented 8 years ago

Is there a way to shade the selected day rather than mark it, like is done with the current day?

SpongeBobSun commented 8 years ago

Actually this is a simple fix but I think it's not proper to have a default clicking background. Because people may have different highlight style in OnDateClickListener. So having a default clicking background may cause trouble.

So if you really want a clicking background, please implement it in OnDateClickListener and change the cell's background. You may also need a varaible to record last clicked cell so you can restore its normal background later. As i said, this is a simple fix.

jcaruso001 commented 8 years ago

True, I can see why you don't want to do that, thanks for the work around.