DotLoadersPack-Android
DotLoadersPack-Android copied to clipboard
Android DotsLoaders - a replacement of default android material progressbar with dots loaders
Added repository to Module build.gradle and synced. Also added JCentre to project. Android Studio complains it cannot find build.gradle. Gradle version: `com.android.tools.build:gradle:4.1.1` Kotlin: v1.5.0
Hi, I used this library as a loader for my PageListAdapter. I added two ViewHolder, one for data and one for ProgressBar. after one or twice the animation of LazyLoader...
"Timer-6" prio=5 tid=66 Runnable at android.os.MessageQueue.enqueueMessage (MessageQueue.java:566) at android.os.Handler.enqueueMessage (Handler.java:643) at android.os.Handler.sendMessageAtTime (Handler.java:612) at android.os.Handler.sendMessageDelayed (Handler.java:582) at android.os.Handler.post (Handler.java:338) at android.app.Activity.runOnUiThread (Activity.java:6080) at com.agrawalsuneet.dotsloader.loaders.CircularDotsLoader$scheduleTimer$1.run (CircularDotsLoader.kt:71) at java.util.TimerThread.mainLoop (Timer.java:555) at java.util.TimerThread.run...
when view create loader hide after when loader show on button click loader show but not start.
When I build my project with this dependency I get conflict the library manifest config. Can you please @agrawalsuneet remove and release a version. FYI, I can use tools:replace="android:allowBackup" to...
Fixes issue reported here https://github.com/agrawalsuneet/DotLoadersPack-Android/issues/31
Bug: multiple onVisibleChanged calls on LinearDotsLoader leads to multiple scheduled Timer instances
bug in these lines https://github.com/agrawalsuneet/DotLoadersPack-Android/blob/master/dotsloader/src/main/java/com/agrawalsuneet/dotsloader/loaders/LinearDotsLoader.kt#L90-L98 fix is to add cancelling before timer instantiation and scheduling to eliminate racing of cancel vs create&schedule. ``` private fun scheduleTimer() { timer?.cancel() timer =...