prolificinteractive / material-calendarview

A Material design back port of Android's CalendarView
https://prolificinteractive.github.io/material-calendarview/
MIT License
5.92k stars 1.32k forks source link

why selected date gets resized ? #909

Closed altaf2892 closed 5 years ago

altaf2892 commented 5 years ago

Selected Date gets Resized

save

u can see selected date in Blue size is bigger than other dates in the view..

And yes i m using selector to change background but i have used same selector like other dates showing just with BLUE colour..

altaf2892 commented 5 years ago

below code solved the problem ` ColorDrawable shapeDrawable = new ColorDrawable(); shapeDrawable.setColor(Color.TRANSPARENT); view.setSelectionDrawable(shapeDrawable);

    view.setBackgroundDrawable(drawable);`