Kizito Nwose

Results 87 comments of Kizito Nwose

I have this issue as well in ` 3.1.8`. I kept downgrading/testing and the issue persisted until I got to `3.1.5` which works perfectly. So it looks like something broke...

Hi @meNESS, I fixed this issue in my fork, you can find the repo [here](https://github.com/kizitonwose/AndroidTagGroup) use: ``` Groovy compile 'com.github.kizitonwose.AndroidTagGroup:1.6.0' ```

@yonkornilov Thanks a lot for that. I've fixed it. Does it compile on your end now?

@yonkornilov Yes, it now works. Thanks a lot.

@srujan7 You can't do that at the moment. If you're trying to validate the tags, you can check the new tag and return `true` or `false` in the `onAppend()` method....

Hi, you can't start from a specific date. The alternative is to start with the month that contains the date and disable all past dates in that month. Regarding changing...

Use `scrollToDate()` or `smoothScrollToDate()`

The calendar cancels the job when the view is detached from the window, an alternative would be to return the job so the caller can cancel when appropriate. Can I...

A workaround you can use for now is to call `onDetachedFromWindow()` on the calendarView before setting the binding to null. This allows the view to cancel the job internally. But...

This seems to be a bug in the library, the completion is still called even though the job is canceled. The fix will be to check if the job is...