Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collapse calender getting gone #10

Open
vikrantkjain opened this issue Oct 10, 2015 · 7 comments
Open

Collapse calender getting gone #10

vikrantkjain opened this issue Oct 10, 2015 · 7 comments

Comments

@vikrantkjain
Copy link

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

@TigerSkinZhang
Copy link

sometimes it appers,how to solve it ?

@vikrantkjain
Copy link
Author

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
Copy link
Author

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

@libill
Copy link

libill commented Nov 4, 2015

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);
}

@uzumyam
Copy link

uzumyam commented Dec 11, 2015

I encounter this problem too, libill 's method works

@blazsolar
Copy link
Owner

I'll try to look into this ASAP.

@maxim-petlyuk
Copy link

libill 's method works

Its broken the animation logic. Its not clear.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants