Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Android Spinkit | 8,413 | 1 | 4 months ago | 3 | May 02, 2020 | 61 | mit | Java | ||
Android loading animations | ||||||||||
Androidanimationexercise | 1,758 | 19 hours ago | 4 | apache-2.0 | Java | |||||
Android 动画各种实现,包括帧动画、补间动画和属性动画的总结分享 | ||||||||||
Meiwidgetview | 1,735 | 3 years ago | 1 | apache-2.0 | Java | |||||
🔥一款汇总了郭霖,鸿洋,以及自己平时收集的自定义控件集合库(小红书) | ||||||||||
Flutter_dojo | 1,327 | 2 years ago | 5 | gpl-3.0 | Dart | |||||
A beautiful design and useful project for Building a flutter knowledge architecture | ||||||||||
Waveview | 1,293 | 3 years ago | 1 | June 23, 2017 | 15 | apache-2.0 | Java | |||
A wave view of android,can be used as progress bar. | ||||||||||
Easyreveal | 329 | 3 years ago | 1 | December 07, 2019 | mit | Kotlin | ||||
Android Easy Reveal Library | ||||||||||
Rewardlayout | 269 | 3 years ago | 1 | apache-2.0 | Java | |||||
仿斗鱼直播送礼物和连击效果动画 | ||||||||||
Countdownanimation | 111 | 6 years ago | 2 | Java | ||||||
Simple count down animation for Android | ||||||||||
Pentagonfloatingactionbutton | 102 | 7 years ago | 2 | Java | ||||||
Android property animation - The Value Animator | ||||||||||
Stacklayoutmanager | 98 | 3 years ago | 7 | mit | Kotlin | |||||
A RecyclerView.LayoutManager implementation which provides functionality to show a group of stack view. |
Android loading animations(I wrote a android edition according SpinKit)
dependencies {
implementation 'com.github.ybq:Android-SpinKit:1.4.0'
}
<com.github.ybq.android.spinkit.SpinKitView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/spin_kit"
style="@style/SpinKitView.Large.Circle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:SpinKit_Color="@color/colorAccent" />
ProgressBar progressBar = (ProgressBar)findViewById(R.id.progress);
Sprite doubleBounce = new DoubleBounce();
progressBar.setIndeterminateDrawable(doubleBounce);
@style/SpinKitView
@style/SpinKitView.Circle
@style/SpinKitView.Large
@style/SpinKitView.Small
@style/SpinKitView.Small.DoubleBounce
Style | Preview |
---|---|
RotatingPlane | ![]() |
DoubleBounce | ![]() |
Wave | ![]() |
WanderingCubes | ![]() |
Pulse | ![]() |
ChasingDots | ![]() |
ThreeBounce | ![]() |
Circle | ![]() |
CubeGrid | ![]() |
FadingCircle | ![]() |
FoldingCube | ![]() |
RotatingCircle | ![]() |