Alexander--
Alexander--
This is because `SwipeItemMangerImpl` tracks item state using position in list instead of id. Position is just a visible location on screen, so when something gets deleted (and another item...
I haven't had much time to read the code, but it looks like you are attempting to directly instantiate a class from annotated code (before it have been compiled). Naturally,...
I know, but sometimes one really have to hardcode them in several places. E.g. I have a following method in my code (taken from [this SO answer](http://stackoverflow.com/a/9536914)): ``` public static...
Ok, I have notices that `@SimpleView` does use a projection passed to it. So I tried to create a quick fix by renaming a column _twice_ (in hopes, that new...
Not really, just informing you. Would not have looked good there anyway.
@dimo414 well, by the same logic, the possibility of OOM is always around the corner, so there is no need to care about memory usage, is there? The real problem...
@cpovirk > I'm a little worried that it might be noisy for IterableSubject, but of course you're only asking for it for the array subjects Why do you think, that...
Got it to work with current version after allowing Proguard to strip Koloboke classes (which removes package-info since it is unreferenced by other classes). Many people use all-or-nothing Proguard configs,...
> the problem is that you have to calculate what's in the viewport at every scroll change @moagrius Is this really a problem? I have tackled GIS matters a little...
> scroll events fire very quickly @mariotaku Do you mean calls to onDraw? Either way, doing lookups in small, localized memory structures is much faster than actually drawing unnecessary objects...