We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I need to add your collapse calendar view in a scroll view. So i create a custom scrollview like this:
`public class ResizableScrollView extends ScrollView {
private ResizeManager mResizeManager; public ResizableScrollView(Context context) { super(context); } public ResizableScrollView(Context context, AttributeSet attrs) { super(context, attrs); } public ResizableScrollView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } public void setUpResizeManager(CollapseCalendarView calendarView){ mResizeManager = new ResizeManager(calendarView); } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { return mResizeManager.onInterceptTouchEvent(ev); } @Override public boolean onTouchEvent(@NonNull MotionEvent event) { super.onTouchEvent(event); return mResizeManager.onTouchEvent(event); } @Override protected void dispatchDraw(@NonNull Canvas canvas) { mResizeManager.onDraw(); super.dispatchDraw(canvas); } @Override protected void onDetachedFromWindow() { super.onDetachedFromWindow(); mResizeManager.recycle(); }
}`
When i ran and scrolled , it appeared a small space like below picture.
I don't know why. Please help me! This is my project: https://www.dropbox.com/s/v75zqklgkg3hx1g/collapse_calendar.zip?dl=0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need to add your collapse calendar view in a scroll view. So i create a custom scrollview like this:
`public class ResizableScrollView extends ScrollView {
}`
When i ran and scrolled , it appeared a small space like below picture.
I don't know why. Please help me! This is my project: https://www.dropbox.com/s/v75zqklgkg3hx1g/collapse_calendar.zip?dl=0
The text was updated successfully, but these errors were encountered: