├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── GIF.gif ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── king │ │ └── view │ │ └── load │ │ └── app │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── king │ │ │ └── view │ │ │ └── load │ │ │ └── app │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── king │ └── view │ └── load │ └── app │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── .gitignore ├── bintray.gradle ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── king │ │ └── view │ │ └── load │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── king │ │ │ └── view │ │ │ └── load │ │ │ └── LoadingView.kt │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── king │ └── view │ └── load │ └── ExampleUnitTest.java ├── settings.gradle └── versions.gradle /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | 2 | version: 2 3 | jobs: 4 | build: 5 | working_directory: ~/code 6 | docker: 7 | - image: circleci/android:api-29 8 | environment: 9 | JVM_OPTS: -Xmx3200m 10 | steps: 11 | - checkout 12 | - restore_cache: 13 | key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} 14 | - run: 15 | name: Download Dependencies 16 | command: ./gradlew androidDependencies 17 | - save_cache: 18 | paths: 19 | - ~/.gradle 20 | key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} 21 | - run: 22 | name: Run Tests 23 | command: ./gradlew lint test 24 | - store_artifacts: 25 | path: app/build/reports 26 | destination: reports 27 | - store_test_results: 28 | path: app/build/test-results -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea 5 | .DS_Store 6 | /build 7 | /captures 8 | .externalNativeBuild 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | dist: trusty 3 | jdk: oraclejdk8 4 | sudo: false 5 | 6 | env: 7 | global: 8 | - ANDROID_API_LEVEL=29 9 | - ANDROID_BUILD_TOOLS_VERSION=29.0.1 10 | - TRAVIS_SECURE_ENV_VARS=true 11 | 12 | before_install: 13 | - chmod +x gradlew 14 | - mkdir "$ANDROID_HOME/licenses" || true 15 | # Hack to accept Android licenses 16 | - yes | sdkmanager "platforms;android-$ANDROID_API_LEVEL" 17 | 18 | 19 | android: 20 | components: 21 | # The BuildTools version used by your project 22 | - tools 23 | - platform-tools 24 | - build-tools-$ANDROID_BUILD_TOOLS_VERSION 25 | # The SDK version used to compile your project 26 | - android-$ANDROID_API_LEVEL 27 | - extra-android-m2repository 28 | - extra-google-android-support 29 | 30 | script: 31 | - ./gradlew clean 32 | - ./gradlew assembleRelease -------------------------------------------------------------------------------- /GIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/GIF.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019 Jenly Yu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LoadingView 2 | 3 | [![JitPack](https://img.shields.io/jitpack/v/github/jenly1314/LoadingView?logo=jitpack)](https://jitpack.io/#jenly1314/LoadingView) 4 | [![Download](https://img.shields.io/badge/download-APK-brightgreen?logo=github)](https://raw.githubusercontent.com/jenly1314/LoadingView/master/app/release/app-release.apk) 5 | [![API](https://img.shields.io/badge/API-16%2B-brightgreen?logo=android)](https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels) 6 | [![License](https://img.shields.io/github/license/jenly1314/LoadingView?logo=open-source-initiative)](https://opensource.org/licenses/mit) 7 | 8 | LoadingView for Android 是一个圆弧加载过渡动画,圆弧个数,大小,弧度,渐变颜色,完全可配。 9 | 10 | ## 效果展示 11 | ![Image](GIF.gif) 12 | 13 | > 你也可以直接下载 [演示App](https://raw.githubusercontent.com/jenly1314/LoadingView/master/app/release/app-release.apk) 体验效果 14 | 15 | ## 引入 16 | 17 | ### Gradle: 18 | 19 | 1. 在Project的 **build.gradle** 或 **setting.gradle** 中添加远程仓库 20 | 21 | ```gradle 22 | repositories { 23 | //... 24 | mavenCentral() 25 | maven { url 'https://jitpack.io' } 26 | } 27 | ``` 28 | 29 | 2. 在Module的 **build.gradle** 中添加依赖项 30 | 31 | ```gradle 32 | implementation 'com.github.jenly1314:LoadingView:1.0.0' 33 | ``` 34 | 35 | ## 使用 36 | 37 | ## LoadingView自定义属性说明(默认渐变色) 38 | 39 | | 属性 | 值类型 | 默认值 | 说明 | 40 | | :------| :------ | :------ | :------ | 41 | | lvCount | integer | 1 | 圆弧数量 | 42 | | lvStartAngle | integer | 0 | 圆弧开始角度,默认三点钟方向 | 43 | | lvSweepAngle | integer | 360 | 圆弧扫描角度范围 | 44 | | lvStrokeWidth | dimension | 3dp | 笔画描边的宽度 | 45 | | lvMaxSpeed | integer | 5 | 最大速度 | 46 | | lvMinSpeed | integer | 3 | 最小速度 | 47 | | lvCirclePadding | dimension | 2dp | 圆弧之间的间距 | 48 | | lvRefreshInterval | integer | 15 | 刷新间隔时间,单位ms | 49 | | lvColor | color | | 圆弧颜色,默认渐变色 | 50 | | lvCounterclockwise | boolean | false | 是否逆时针方向旋转 | 51 | 52 | ## 示例 53 | 54 | 布局示例 55 | ```Xml 56 | 60 | ``` 61 | 62 | 更多使用详情,请查看[app](app)中的源码使用示例或直接查看 [API帮助文档](https://jitpack.io/com/github/jenly1314/LoadingView/latest/javadoc/) 63 | 64 | ## 相关推荐 65 | - [WaveView](https://github.com/jenly1314/WaveView) 一个水波纹动画控件视图,支持波纹数,波纹振幅,波纹颜色,波纹速度,波纹方向等属性完全可配。 66 | - [SpinCounterView](https://github.com/jenly1314/SpinCounterView) 一个类似码表变化的旋转计数器动画控件。 67 | - [CounterView](https://github.com/jenly1314/CounterView) 一个数字变化效果的计数器视图控件。 68 | - [RadarView](https://github.com/jenly1314/RadarView) 一个雷达扫描动画后,然后展示得分效果的控件。 69 | - [SuperTextView](https://github.com/jenly1314/SuperTextView) 一个在TextView的基础上扩展了几种动画效果的控件。 70 | - [GiftSurfaceView](https://github.com/jenly1314/GiftSurfaceView) 一个适用于直播间送礼物拼图案的动画控件。 71 | - [FlutteringLayout](https://github.com/jenly1314/FlutteringLayout) 一个适用于直播间点赞桃心飘动效果的控件。 72 | - [DragPolygonView](https://github.com/jenly1314/DragPolygonView) 一个支持可拖动多边形,支持通过拖拽多边形的角改变其形状的任意多边形控件。 73 | - [CircleProgressView](https://github.com/jenly1314/CircleProgressView) 一个圆形的进度动画控件,动画效果纵享丝滑。 74 | - [ArcSeekBar](https://github.com/jenly1314/ArcSeekBar) 一个弧形的拖动条进度控件,配置参数完全可定制化。 75 | - [DrawBoard](https://github.com/jenly1314/DrawBoard) 一个自定义View实现的画板;方便对图片进行编辑和各种涂鸦相关操作。 76 | - [compose-component](https://github.com/jenly1314/compose-component) 一个Jetpack Compose的组件库;主要提供了一些小组件,便于快速使用。 77 | 78 | 79 | ## 版本日志 80 | 81 | #### v1.0.0:2019-8-9 82 | * LoadingView初始版本 83 | 84 | --- 85 | 86 | ![footer](https://jenly1314.github.io/page/footer.svg) 87 | 88 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'kotlin-android' 3 | apply plugin: 'kotlin-android-extensions' 4 | 5 | android { 6 | compileSdkVersion build_versions.compileSdk 7 | buildToolsVersion build_versions.buildTools 8 | defaultConfig { 9 | applicationId "com.king.view.load.app" 10 | minSdkVersion build_versions.minSdk 11 | targetSdkVersion build_versions.targetSdk 12 | versionCode app_version.versionCode 13 | versionName app_version.versionName 14 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 | } 16 | buildTypes { 17 | release { 18 | minifyEnabled false 19 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 20 | } 21 | } 22 | 23 | lintOptions { 24 | abortOnError false 25 | } 26 | 27 | } 28 | 29 | dependencies { 30 | 31 | implementation fileTree(include: ['*.jar'], dir: 'libs') 32 | testImplementation deps.test.junit 33 | androidTestImplementation deps.test.runner 34 | androidTestImplementation deps.test.espresso 35 | 36 | implementation deps.kotlin 37 | implementation deps.androidx.corektx 38 | 39 | implementation deps.androidx.appcompat 40 | implementation deps.androidx.constraintlayout 41 | 42 | implementation project(':lib') 43 | } 44 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] -------------------------------------------------------------------------------- /app/src/androidTest/java/com/king/view/load/app/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.king.view.load.app 2 | 3 | import androidx.test.InstrumentationRegistry 4 | import androidx.test.runner.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getTargetContext() 22 | assertEquals("com.king.view.load.app", appContext.packageName) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/king/view/load/app/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.king.view.load.app 2 | 3 | import android.os.Bundle 4 | import androidx.appcompat.app.AppCompatActivity 5 | 6 | class MainActivity : AppCompatActivity() { 7 | 8 | override fun onCreate(savedInstanceState: Bundle?) { 9 | super.onCreate(savedInstanceState) 10 | setContentView(R.layout.activity_main) 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 19 | 26 | 34 | 43 | 51 | 52 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #48D1CC 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LoadingView 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/test/java/com/king/view/load/app/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.king.view.load.app 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | 5 | apply from: 'versions.gradle' 6 | 7 | addRepos(repositories) 8 | 9 | ext.kotlin_version = '1.3.41' 10 | 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:3.4.2' 13 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 14 | 15 | classpath 'com.novoda:bintray-release:0.9' 16 | // NOTE: Do not place your application dependencies here; they belong 17 | // in the individual module build.gradle files 18 | } 19 | } 20 | 21 | allprojects { 22 | addRepos(repositories) 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Automatically convert third-party libraries to use AndroidX 19 | android.enableJetifier=true 20 | # Kotlin code style for this project: "official" or "obsolete": 21 | kotlin.code.style=official 22 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenly1314/LoadingView/55e0bf667da77764af85b09721d2f546159efb30/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Aug 08 11:01:26 CST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /lib/bintray.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.novoda.bintray-release' 2 | 3 | //添加 4 | publish { 5 | userOrg = 'jenly'//bintray.com用户名 6 | groupId = 'com.king.view'//jcenter上的路径 7 | artifactId = 'loadingview'//项目名称 8 | publishVersion = app_version.versionName//版本号 9 | desc = 'LoadingView for Android'//描述 10 | website = 'https://github.com/jenly1314/LoadingView'//网站 11 | licences = ['MIT']//开源协议 12 | } -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply plugin: 'kotlin-android' 3 | apply plugin: 'kotlin-android-extensions' 4 | apply from: 'bintray.gradle' 5 | 6 | android { 7 | compileSdkVersion build_versions.compileSdk 8 | buildToolsVersion build_versions.buildTools 9 | defaultConfig { 10 | minSdkVersion build_versions.minSdk 11 | targetSdkVersion build_versions.targetSdk 12 | versionCode app_version.versionCode 13 | versionName app_version.versionName 14 | 15 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 | 17 | } 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | 25 | lintOptions { 26 | abortOnError false 27 | warning 'InvalidPackage' 28 | } 29 | 30 | } 31 | 32 | dependencies { 33 | implementation fileTree(include: ['*.jar'], dir: 'libs') 34 | testImplementation deps.test.junit 35 | androidTestImplementation deps.test.runner 36 | androidTestImplementation deps.test.espresso 37 | 38 | } -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /lib/src/androidTest/java/com/king/view/load/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.king.view.load; 2 | 3 | import android.content.Context; 4 | import androidx.test.InstrumentationRegistry; 5 | import androidx.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.king.view.load.test", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /lib/src/main/java/com/king/view/load/LoadingView.kt: -------------------------------------------------------------------------------- 1 | package com.king.view.load 2 | 3 | import android.content.Context 4 | import android.graphics.* 5 | import android.util.AttributeSet 6 | import android.util.TypedValue 7 | import android.view.View 8 | 9 | 10 | /** 11 | * @author Jenly 12 | */ 13 | class LoadingView: View { 14 | 15 | 16 | /** 17 | * 画笔 18 | */ 19 | private lateinit var mPaint: Paint 20 | 21 | /** 22 | * 圆心X坐标 23 | */ 24 | private var mCircleX: Float = 0f 25 | /** 26 | * 圆心Y坐标 27 | */ 28 | private var mCircleY: Float = 0f 29 | 30 | /** 31 | * 半径 32 | */ 33 | private var mRadius: Float = 0f 34 | 35 | /** 36 | * 圆弧开始角度 37 | */ 38 | private var mStartAngle = 0f 39 | 40 | /** 41 | * 圆弧扫描角度 42 | */ 43 | private var mSweepAngle = 180f 44 | /** 45 | * 画笔宽度 46 | */ 47 | private var mStrokeWidth = 0f 48 | 49 | /** 50 | * 圆弧之间的间距 51 | */ 52 | private var mCirclePadding: Float = 0f 53 | 54 | /** 55 | * 圆弧数量 56 | */ 57 | private var mCount = 1 58 | /** 59 | * 最大速度 60 | */ 61 | private var mMaxSpeed = 5f 62 | /** 63 | * 最小速度 64 | */ 65 | private var mMinSpeed = 3f 66 | 67 | /** 68 | * 偏移量数组(记录每个圆弧的偏移量) 69 | */ 70 | private lateinit var mOffsets: FloatArray 71 | /** 72 | * 偏移速度数组(记录每个圆弧的偏移速度) 73 | */ 74 | private lateinit var mOffsetSpeeds: FloatArray 75 | 76 | /** 77 | * 画笔颜色 78 | */ 79 | private var mColor = 0 80 | /** 81 | * 画笔着色器 82 | */ 83 | private lateinit var mShader: Shader 84 | /** 85 | * 着色器颜色 86 | */ 87 | private var mShaderColors = intArrayOf(-0xb01554, -0x5722af, -0x172cf1, -0x5722af, -0xb01554) 88 | /** 89 | * 是否使用着色器 90 | */ 91 | private var isShader = true 92 | /** 93 | * 刷新时间间隔,默认15ms 94 | */ 95 | private var mRefreshInterval = 15 96 | 97 | /** 98 | * 是否逆时针方向 99 | */ 100 | private var isCounterclockwise = false 101 | 102 | constructor(context: Context?) : this(context, null) 103 | 104 | constructor(context: Context?, attrs: AttributeSet?) : this(context, attrs, 0) 105 | 106 | constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) { 107 | init(context,attrs) 108 | } 109 | 110 | /** 111 | * 初始化 112 | */ 113 | private fun init(context: Context?,attrs: AttributeSet?) { 114 | 115 | var a = context?.obtainStyledAttributes(attrs,R.styleable.LoadingView) 116 | 117 | var displayMetrics = resources.displayMetrics 118 | 119 | mStrokeWidth = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,3f,displayMetrics) 120 | mCirclePadding = mStrokeWidth + TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,2f,displayMetrics) 121 | 122 | a?.indexCount?.let { 123 | for(i in 0 until it){ 124 | var attr = a.getIndex(i) 125 | when(attr){ 126 | R.styleable.LoadingView_lvCount -> mCount = a.getInt(attr,2) 127 | R.styleable.LoadingView_lvStartAngle -> mStartAngle = a.getInt(attr,0).toFloat() 128 | R.styleable.LoadingView_lvSweepAngle -> mSweepAngle = a.getInt(attr,180).toFloat() 129 | R.styleable.LoadingView_lvStrokeWidth -> mStrokeWidth = a.getDimension(attr,TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,4f,displayMetrics)) 130 | R.styleable.LoadingView_lvMaxSpeed -> mMaxSpeed = a.getInt(attr,5).toFloat() 131 | R.styleable.LoadingView_lvMinSpeed -> mMinSpeed = a.getInt(attr,3).toFloat() 132 | R.styleable.LoadingView_lvCirclePadding -> mCirclePadding = a.getDimension(attr,TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,5f,displayMetrics)) 133 | R.styleable.LoadingView_lvRefreshInterval -> mRefreshInterval = a.getInt(attr,15) 134 | R.styleable.LoadingView_lvColor -> { 135 | mColor = a.getColor(attr,mColor) 136 | isShader = false 137 | } 138 | R.styleable.LoadingView_lvCounterclockwise -> isCounterclockwise = a.getBoolean(attr,false) 139 | } 140 | 141 | } 142 | 143 | a.recycle() 144 | } 145 | 146 | mPaint = Paint() 147 | 148 | mCount.takeIf { mCount < 1 }?.apply { 149 | mCount = 1 150 | } 151 | 152 | mOffsets = FloatArray(mCount) 153 | mOffsetSpeeds = FloatArray(mCount) 154 | var s = Math.abs(mMaxSpeed - mMinSpeed) * 1.0f / mCount 155 | var offsets = 360f / mCount 156 | for(i in 0 until mCount){ 157 | mOffsets[i] = mStartAngle + offsets * i 158 | mOffsetSpeeds[i] = mMinSpeed + s * i 159 | } 160 | 161 | 162 | } 163 | 164 | override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) { 165 | super.onMeasure(widthMeasureSpec, heightMeasureSpec) 166 | 167 | var defaultSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,60f,resources.displayMetrics).toInt() 168 | 169 | var width = measureHandler(widthMeasureSpec,defaultSize) 170 | var height = measureHandler(heightMeasureSpec,defaultSize) 171 | 172 | mCircleX = (width + paddingLeft - paddingRight) / 2.0f 173 | mCircleY = (height + paddingTop - paddingBottom) / 2.0f 174 | 175 | var padding = Math.max(paddingLeft + paddingRight , paddingTop + paddingBottom) 176 | 177 | mRadius = (width - padding - mStrokeWidth) / 2.0f 178 | 179 | mShader = SweepGradient(mCircleX, mCircleY, mShaderColors, null) 180 | 181 | setMeasuredDimension(width,height) 182 | 183 | } 184 | 185 | 186 | private fun measureHandler(measureSpec: Int, defaultSize: Int): Int{ 187 | var result = defaultSize 188 | var measureMode = MeasureSpec.getMode(measureSpec) 189 | var measureSize = MeasureSpec.getSize(measureSpec) 190 | when(measureMode){ 191 | MeasureSpec.EXACTLY -> result = measureSize 192 | MeasureSpec.AT_MOST -> result = Math.min(defaultSize,measureSize) 193 | } 194 | 195 | return result 196 | } 197 | 198 | /** 199 | * 绘制加载动画 200 | */ 201 | private fun drawLoading(canvas: Canvas?){ 202 | 203 | mPaint.apply { 204 | reset() 205 | isAntiAlias = true 206 | style = Paint.Style.STROKE 207 | strokeCap = Paint.Cap.ROUND 208 | strokeWidth = mStrokeWidth 209 | 210 | takeIf { isShader }?.apply { 211 | shader = mShader 212 | } ?: run{ 213 | color = mColor 214 | } 215 | 216 | } 217 | 218 | //遍历绘制圆弧 219 | for(i in 0 until mCount){ 220 | var rectF = RectF(mCircleX - mRadius + i * mCirclePadding,mCircleY - mRadius + i * mCirclePadding, mCircleX + mRadius - i * mCirclePadding, mCircleY + mRadius - i * mCirclePadding) 221 | canvas?.drawArc(rectF, mOffsets[i], mSweepAngle, false, mPaint) 222 | if(isCounterclockwise){ 223 | mOffsets[i] = (mOffsets[i] - mOffsetSpeeds[i]) % 360 224 | }else{ 225 | mOffsets[i] = (mOffsets[i] + mOffsetSpeeds[i]) % 360 226 | } 227 | } 228 | 229 | //延迟循环刷新 230 | postInvalidateDelayed(mRefreshInterval.toLong()) 231 | } 232 | 233 | 234 | override fun onDraw(canvas: Canvas?) { 235 | super.onDraw(canvas) 236 | drawLoading(canvas) 237 | } 238 | 239 | /** 240 | * 设置圆弧偏移速度(角度) 241 | */ 242 | fun setOffsetSpeeds(offsetSpeeds: FloatArray){ 243 | mOffsetSpeeds = offsetSpeeds 244 | } 245 | 246 | /** 247 | * 设置刷新时间间隔,单位ms 248 | */ 249 | fun setRefreshInterval(refreshInterval: Int){ 250 | mRefreshInterval = refreshInterval 251 | } 252 | 253 | /** 254 | * 设置着色器 255 | * @param shader 256 | */ 257 | fun setShader(shader: Shader) { 258 | isShader = true 259 | this.mShader = shader 260 | } 261 | 262 | /** 263 | * 设置着色器 264 | */ 265 | fun setShaderColor(colors: IntArray){ 266 | isShader = true 267 | this.mShader = SweepGradient(mCircleX, mCircleY, colors, null) 268 | } 269 | 270 | /** 271 | * 设置颜色 272 | * @param resId 273 | */ 274 | fun setColorResource(resId: Int) { 275 | val color = resources.getColor(resId) 276 | setColor(color) 277 | } 278 | 279 | /** 280 | * 设置颜色 281 | */ 282 | fun setColor(color: Int){ 283 | isShader = false 284 | mColor = color 285 | } 286 | 287 | } 288 | -------------------------------------------------------------------------------- /lib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | lib 3 | 4 | -------------------------------------------------------------------------------- /lib/src/test/java/com/king/view/load/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.king.view.load; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':lib' 2 | -------------------------------------------------------------------------------- /versions.gradle: -------------------------------------------------------------------------------- 1 | //App 2 | def app_version = [:] 3 | app_version.versionCode = 1 4 | app_version.versionName = "1.0.0" 5 | ext.app_version = app_version 6 | 7 | //build version 8 | def build_versions = [:] 9 | build_versions.minSdk = 16 10 | build_versions.targetSdk = 29 11 | build_versions.compileSdk = 29 12 | build_versions.buildTools = "29.0.1" 13 | ext.build_versions = build_versions 14 | 15 | ext.deps = [:] 16 | 17 | // App dependencies 18 | def versions = [:] 19 | //appcompat 20 | versions.appcompat = "1.0.2" 21 | versions.constraintLayout = "1.1.3" 22 | 23 | versions.kotlin_version = "1.3.41" 24 | 25 | //test 26 | versions.junit = "4.12" 27 | versions.test = "1.2.0" 28 | versions.runner = "1.2.0" 29 | versions.espresso = "3.2.0" 30 | 31 | ext.versions = versions 32 | 33 | //appcompat 34 | def androidx = [:] 35 | androidx.corektx = "androidx.core:core-ktx:$versions.appcompat" 36 | androidx.appcompat = "androidx.appcompat:appcompat:$versions.appcompat" 37 | androidx.constraintlayout = "androidx.constraintlayout:constraintlayout:$versions.constraintLayout" 38 | deps.androidx = androidx 39 | 40 | deps.kotlin = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin_version" 41 | 42 | //test 43 | def test = [:] 44 | test.junit = "junit:junit:$versions.junit" 45 | test.test = "androidx.test:core:$versions.test" 46 | test.runner = "androidx.test:runner:$versions.runner" 47 | test.espresso = "androidx.test.espresso:espresso-core:$versions.espresso" 48 | deps.test = test 49 | 50 | ext.deps = deps 51 | 52 | def addRepos(RepositoryHandler handler) { 53 | handler.google() 54 | handler.jcenter() 55 | } 56 | ext.addRepos = this.&addRepos --------------------------------------------------------------------------------