android-collapse-calendar-view icon indicating copy to clipboard operation
android-collapse-calendar-view copied to clipboard

Collapse calender getting gone

Open vikrantkjain opened this issue 8 years ago • 7 comments

on motion up event during layout week, than whole collapse calender getting gone

vikrantkjain avatar Oct 10 '15 14:10 vikrantkjain

sometimes it appers,how to solve it ?

TigerSkinZhang avatar Oct 21 '15 03:10 TigerSkinZhang

In RecyclerManager class when end become +239 and progress become -239 than this problem is happening , i tried put conditions there ,but not getting solution of this problem

vikrantkjain avatar Oct 23 '15 05:10 vikrantkjain

mCalendarView.getLayoutParams().height - mCalendarHolder.getMinHeight() this is become negative or zero ,than this give problem

vikrantkjain avatar Oct 28 '15 08:10 vikrantkjain

modify this code will fix this bug: at SizeViewHolder.java.java 53 line modify: public void onHidden() { getView().getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT; getView().setVisibility(View.GONE); } to: public void onHidden() { getView().getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT; getView().setVisibility(View.VISIBLE); }

libill avatar Nov 04 '15 14:11 libill

I encounter this problem too, libill 's method works

uzumyam avatar Dec 11 '15 03:12 uzumyam

I'll try to look into this ASAP.

blazsolar avatar Dec 11 '15 08:12 blazsolar

libill 's method works

Its broken the animation logic. Its not clear.

maxim-petlyuk avatar Jun 04 '17 20:06 maxim-petlyuk