Svetlozar Kostadinov
Svetlozar Kostadinov
I don't have time to dig it, but in `mUpdater` there's a condition which is never satisfied and `stop()` isn't called: ``` if (isFinishing()) { mFinishingOffset += (OFFSET_PER_FRAME * mProgressiveStopSpeed);...
Hey, could someone confirm the library is playing nicely with latest Dagger? As of now - 2.21.
Hi, I've just found *my own* bug in this code causing an `IllegalArgumentException`: ``` @PaperParcel data class MultiSearchState( val searchQuery: String? = null, val activeSearchType: SearchType = SearchType.MOVIES ) :...
There's a memory leak in `setText()`. You need to add the following line in `onPreDraw()`: ``` public void setText(CharSequence charSequence) { textContent = charSequence; textView.setText(charSequence.toString()); textView.getViewTreeObserver().addOnPreDrawListener(new OnPreDrawListener() { @Override public...
First - thanks for the great library. I need some help to properly understand the terms - palette, proflle and swatch. Ok, palette should be a collection of colors. Profile...
Hi! Can AStickyHeader be adapted to CollectionView? It is a new flexible list/grid control introduced in Google IO 2014 app. It's implemented on top of ListView and seems quite useful....
Hi, I wish to ask is there some specific reason to not create the presenters in `onCreateViewHolder()` but in `MvpRecyclerListAdapter.addInternal()`? Imagine you have an adapter of 1000 items. That means...
- Added `FocusGravity.TOP` and `FocusGravity.BOTTOM`; - Added `.setFadeDuration()`; - Added way to override/customize the "pulsating dot". E.g.: `.enableGestureDrawable(true) // replaces enableDotAnimation() method `.setGestureDrawableResId(R.drawable.ic_cursor_hand)` `.setGestureAnimatorResId(R.animator.drag_from_right)` Added `CircleOnEdge` that is a Circle...
Log: https://jitpack.io/com/github/sevar83/android-spatialite/2.0.0-RC0/build.log Looks like some of the latest NDK update have broken my build. The issue is in the NDK but fixed in NDK R15c: https://github.com/android-ndk/ndk/issues/332 **Please, could you tell...