├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── animated-dot-view.iml ├── build.gradle ├── gradle-mvn-push.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── gradle.properties ├── library.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── channguyen │ │ └── adv │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── channguyen │ │ └── adv │ │ ├── AnimatedDotsView.java │ │ └── CircleView.java │ └── res │ ├── layout │ └── v_animated_dots.xml │ └── values │ ├── attrs.xml │ └── strings.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sample.iml └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── channguyen │ │ └── adv │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── channguyen │ │ └── adv │ │ └── sample │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshots ├── sc.gif └── sc.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | animated-dot-view -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 23 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 50 | 51 | 52 | 53 | 54 | Android API 22 Platform 55 | 56 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AnimatedDotsView 2 | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.channguyen/adv/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.channguyen/adv) 3 | Simple dot animation to show progress 4 | 5 | # Demo 6 | ![Main screen](/screenshots/sc.gif) 7 | 8 | # Usage 9 | Add a dependency to your `build.gradle`: 10 | ``` 11 | dependencies { 12 | compile 'com.github.channguyen:adv:1.0.0' 13 | } 14 | ``` 15 | Add the `com.github.channguyen.adv.AnimatedDotsView` to your layout XML file. 16 | ```XML 17 | 24 | 25 | 34 | 35 | 44 | 45 | ``` 46 | 47 | For more usage examples check the **sample** project. 48 | 49 | 50 | # License 51 | ``` 52 | Copyright 2015 Chan Nguyen 53 | 54 | Licensed under the Apache License, Version 2.0 (the "License"); 55 | you may not use this file except in compliance with the License. 56 | You may obtain a copy of the License at 57 | 58 | http://www.apache.org/licenses/LICENSE-2.0 59 | 60 | Unless required by applicable law or agreed to in writing, software 61 | distributed under the License is distributed on an "AS IS" BASIS, 62 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 63 | See the License for the specific language governing permissions and 64 | limitations under the License. 65 | ``` 66 | -------------------------------------------------------------------------------- /animated-dot-view.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /gradle-mvn-push.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013 Chris Banes 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | apply plugin: 'maven' 18 | apply plugin: 'signing' 19 | 20 | def isReleaseBuild() { 21 | return VERSION_NAME.contains("SNAPSHOT") == false 22 | } 23 | 24 | def getReleaseRepositoryUrl() { 25 | return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL 26 | : "https://oss.sonatype.org/service/local/staging/deploy/maven2/" 27 | } 28 | 29 | def getSnapshotRepositoryUrl() { 30 | return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL 31 | : "https://oss.sonatype.org/content/repositories/snapshots/" 32 | } 33 | 34 | def getRepositoryUsername() { 35 | return hasProperty('NEXUS_USERNAME') ? NEXUS_USERNAME : "" 36 | } 37 | 38 | def getRepositoryPassword() { 39 | return hasProperty('NEXUS_PASSWORD') ? NEXUS_PASSWORD : "" 40 | } 41 | 42 | afterEvaluate { project -> 43 | uploadArchives { 44 | repositories { 45 | mavenDeployer { 46 | beforeDeployment { 47 | MavenDeployment deployment -> signing.signPom(deployment) 48 | } 49 | 50 | pom.groupId = GROUP 51 | pom.artifactId = POM_ARTIFACT_ID 52 | pom.version = VERSION_NAME 53 | 54 | repository(url: getReleaseRepositoryUrl()) { 55 | authentication(userName: getRepositoryUsername(), password: getRepositoryPassword()) 56 | } 57 | 58 | snapshotRepository(url: getSnapshotRepositoryUrl()) { 59 | authentication(userName: getRepositoryUsername(), password: getRepositoryPassword()) 60 | } 61 | 62 | pom.project { 63 | name POM_NAME 64 | packaging POM_PACKAGING 65 | description POM_DESCRIPTION 66 | url POM_URL 67 | 68 | scm { 69 | url POM_SCM_URL 70 | connection POM_SCM_CONNECTION 71 | developerConnection POM_SCM_DEV_CONNECTION 72 | } 73 | 74 | licenses { 75 | license { 76 | name POM_LICENCE_NAME 77 | url POM_LICENCE_URL 78 | distribution POM_LICENCE_DIST 79 | } 80 | } 81 | 82 | developers { 83 | developer { 84 | id POM_DEVELOPER_ID 85 | name POM_DEVELOPER_NAME 86 | } 87 | } 88 | } 89 | } 90 | } 91 | } 92 | 93 | signing { 94 | required { 95 | isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") 96 | } 97 | sign configurations.archives 98 | } 99 | 100 | task androidJavadocs(type: Javadoc) { 101 | source = android.sourceSets.main.java.srcDirs 102 | classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) 103 | } 104 | 105 | task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) { 106 | classifier = 'javadoc' 107 | from androidJavadocs.destinationDir 108 | } 109 | 110 | task androidSourcesJar(type: Jar) { 111 | classifier = 'sources' 112 | from android.sourceSets.main.java.sourceFiles 113 | } 114 | 115 | artifacts { 116 | archives androidSourcesJar 117 | archives androidJavadocsJar 118 | } 119 | } -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | VERSION_NAME=1.0.0 21 | VERSION_CODE=1000 22 | GROUP=com.github.channguyen 23 | 24 | POM_DESCRIPTION=Animated Dots View implementation for Android 25 | POM_URL=https://github.com/channguyen/animated-dot-view 26 | POM_SCM_URL=https://github.com/channguyen/animated-dot-view 27 | POM_SCM_CONNECTION=scm:git@github.com:animated-dot-view.git 28 | POM_SCM_DEV_CONNECTION=scm:git@github.com:animated-dot-view.git 29 | POM_LICENCE_NAME=The Apache Software License, Version 2.0 30 | POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt 31 | POM_LICENCE_DIST=repo 32 | POM_DEVELOPER_ID=chan 33 | POM_DEVELOPER_NAME=Chan Nguyen -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Sep 21 01:53:44 PDT 2015 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-2.4-all.zip 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 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 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /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 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 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 Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.1" 6 | 7 | defaultConfig { 8 | minSdkVersion 14 9 | targetSdkVersion 23 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | compile fileTree(dir: 'libs', include: ['*.jar']) 23 | } 24 | 25 | apply from: '../gradle-mvn-push.gradle' 26 | -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_NAME=Animated Dots View Library 2 | POM_ARTIFACT_ID=adv 3 | POM_PACKAGING=aar 4 | -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/chan/Desktop/android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/channguyen/adv/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.github.channguyen.adv; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /library/src/main/java/com/github/channguyen/adv/AnimatedDotsView.java: -------------------------------------------------------------------------------- 1 | package com.github.channguyen.adv; 2 | 3 | import android.animation.Animator; 4 | import android.animation.AnimatorSet; 5 | import android.animation.ArgbEvaluator; 6 | import android.animation.ObjectAnimator; 7 | import android.content.Context; 8 | import android.content.res.TypedArray; 9 | import android.graphics.Color; 10 | import android.util.AttributeSet; 11 | import android.util.Log; 12 | import android.view.ViewGroup; 13 | import android.view.animation.AccelerateInterpolator; 14 | import android.view.animation.Interpolator; 15 | import android.widget.LinearLayout; 16 | 17 | public class AnimatedDotsView extends LinearLayout { 18 | 19 | private static final String TAG = AnimatedDotsView.class.getSimpleName(); 20 | 21 | private static final int DEFAULT_NEUTRAL_COLOR = Color.parseColor("#777777"); 22 | 23 | private static final int DEFAULT_BLINKING_COLOR = Color.parseColor("#FF00FF00"); 24 | 25 | private static final int DEFAULT_DOT_COUNT = 5; 26 | 27 | private static final int DEFAULT_DOT_RADIUS = 20; 28 | 29 | private static final long DURATION_DIFF = 100L; 30 | 31 | private static final Interpolator DOT_INTERPOLATOR = new AccelerateInterpolator(2.0f); 32 | 33 | protected CircleView[] dotViews; 34 | 35 | protected AnimatorSet animatorSet; 36 | 37 | protected boolean stop = false; 38 | 39 | protected int dotCount; 40 | 41 | protected int blinkingColor = DEFAULT_BLINKING_COLOR; 42 | 43 | protected int neutralColor = DEFAULT_NEUTRAL_COLOR; 44 | 45 | protected int dotRadius = DEFAULT_DOT_RADIUS; 46 | 47 | public AnimatedDotsView(Context context) { 48 | this(context, null); 49 | } 50 | 51 | public AnimatedDotsView(Context context, AttributeSet attrs) { 52 | this(context, attrs, -1); 53 | } 54 | 55 | public AnimatedDotsView(Context context, AttributeSet attrs, int defStyleAttr) { 56 | super(context, attrs, defStyleAttr); 57 | inflate(context, R.layout.v_animated_dots, this); 58 | if (attrs != null) { 59 | TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AnimatedDotsView); 60 | try { 61 | dotRadius = a.getDimensionPixelSize( 62 | R.styleable.AnimatedDotsView_adv___dotRadius, DEFAULT_DOT_RADIUS); 63 | dotCount = a.getInt( 64 | R.styleable.AnimatedDotsView_adv___dotCount, DEFAULT_DOT_COUNT); 65 | blinkingColor = a.getColor( 66 | R.styleable.AnimatedDotsView_adv___dotBlinkingColor, DEFAULT_BLINKING_COLOR); 67 | neutralColor = a.getColor( 68 | R.styleable.AnimatedDotsView_adv___dotNeutralColor, DEFAULT_NEUTRAL_COLOR); 69 | } finally { 70 | a.recycle(); 71 | } 72 | } 73 | 74 | setOrientation(HORIZONTAL); 75 | if (dotCount < 1 || dotCount > 10) { 76 | throw new IllegalArgumentException("The number of dot should be between [1, 10]"); 77 | } 78 | addCircleViews(); 79 | } 80 | 81 | private AnimatorSet prepareAnimators() { 82 | ObjectAnimator[] animators = new ObjectAnimator[dotCount]; 83 | int half = dotCount >> 1; 84 | long d = DURATION_DIFF; 85 | /** 86 | * Assign duration increasing -> decreasing 87 | *

88 | * N even: 89 | * [d][d + 1]...[d + 1][d] 90 | * 91 | * N odd: 92 | * [d][d + 1][d + 2][d + 1][d] 93 | *

94 | */ 95 | 96 | /** Walk forward with increasing duration */ 97 | for (int i = 0; i < half; ++i) { 98 | animators[i] = createAnimator(dotViews[i], d); 99 | d += DURATION_DIFF; 100 | } 101 | 102 | /** If dot count is odd, the middle dot has the longest duration */ 103 | if (dotCount % 2 == 1) { 104 | animators[half] = createAnimator(dotViews[half], d); 105 | half++; 106 | } 107 | 108 | /** Walk backward with decreasing duration */ 109 | for (int i = half; i < dotCount; ++i) { 110 | d -= DURATION_DIFF; 111 | animators[i] = createAnimator(dotViews[i], d); 112 | } 113 | 114 | final AnimatorSet animatorSet = new AnimatorSet(); 115 | animatorSet.playSequentially(animators); 116 | animatorSet.setInterpolator(new AccelerateInterpolator(2.0f)); 117 | animatorSet.addListener(new Animator.AnimatorListener() { 118 | @Override 119 | public void onAnimationStart(Animator animation) { 120 | 121 | } 122 | 123 | @Override 124 | public void onAnimationEnd(Animator animation) { 125 | if (!stop) { 126 | animatorSet.start(); 127 | } 128 | } 129 | 130 | @Override 131 | public void onAnimationCancel(Animator animation) { 132 | 133 | } 134 | 135 | @Override 136 | public void onAnimationRepeat(Animator animation) { 137 | 138 | } 139 | }); 140 | return animatorSet; 141 | } 142 | 143 | private void addCircleViews() { 144 | dotViews = new CircleView[dotCount]; 145 | final Context context = getContext(); 146 | for (int i = 0; i < dotCount; ++i) { 147 | Log.e(TAG, "add view: " + i); 148 | dotViews[i] = new CircleView(context); 149 | dotViews[i].setRadius(dotRadius); 150 | dotViews[i].setColor(neutralColor); 151 | addView( 152 | dotViews[i], 153 | 0, 154 | new LinearLayout.LayoutParams( 155 | ViewGroup.LayoutParams.WRAP_CONTENT, 156 | ViewGroup.LayoutParams.WRAP_CONTENT 157 | ) 158 | ); 159 | } 160 | animatorSet = prepareAnimators(); 161 | } 162 | 163 | public void startAnimation() { 164 | stop = false; 165 | animatorSet.start(); 166 | } 167 | 168 | public ObjectAnimator createAnimator(final CircleView v, long duration) { 169 | final ObjectAnimator animator = ObjectAnimator.ofObject( 170 | v, 171 | "color", 172 | new ArgbEvaluator(), 173 | neutralColor, 174 | blinkingColor 175 | ); 176 | animator.setDuration(duration); 177 | animator.setRepeatCount(1); 178 | animator.setInterpolator(DOT_INTERPOLATOR); 179 | animator.addListener(new Animator.AnimatorListener() { 180 | @Override 181 | public void onAnimationStart(Animator animation) { 182 | 183 | } 184 | 185 | @Override 186 | public void onAnimationEnd(Animator animation) { 187 | v.setColor(neutralColor); 188 | } 189 | 190 | @Override 191 | public void onAnimationCancel(Animator animation) { 192 | 193 | } 194 | 195 | @Override 196 | public void onAnimationRepeat(Animator animation) { 197 | 198 | } 199 | }); 200 | return animator; 201 | } 202 | 203 | public void stopAnimation() { 204 | stop = true; 205 | animatorSet.end(); 206 | } 207 | 208 | public int getDotCount() { 209 | return dotCount; 210 | } 211 | 212 | public int getDotRadius() { 213 | return dotRadius; 214 | } 215 | 216 | public int getNeutralColor() { 217 | return neutralColor; 218 | } 219 | 220 | public boolean isStop() { 221 | return stop; 222 | } 223 | 224 | public int getBlinkingColor() { 225 | return blinkingColor; 226 | } 227 | } 228 | -------------------------------------------------------------------------------- /library/src/main/java/com/github/channguyen/adv/CircleView.java: -------------------------------------------------------------------------------- 1 | package com.github.channguyen.adv; 2 | 3 | import android.content.Context; 4 | import android.content.res.TypedArray; 5 | import android.graphics.Canvas; 6 | import android.graphics.Color; 7 | import android.graphics.Paint; 8 | import android.util.AttributeSet; 9 | import android.view.View; 10 | 11 | public class CircleView extends View { 12 | 13 | private static final String TAG = CircleView.class.getSimpleName(); 14 | 15 | private static final float DEFAULT_STROKE_WIDTH = 3.0f; 16 | 17 | private static final int DEFAULT_RADIUS = 20; 18 | 19 | private static final int DEFAULT_COLOR = Color.parseColor("#FF0000"); 20 | 21 | protected float radius; 22 | 23 | protected float strokeWidth = DEFAULT_STROKE_WIDTH; 24 | 25 | protected Paint paint; 26 | 27 | private int color = DEFAULT_COLOR; 28 | 29 | protected boolean filled = true; 30 | 31 | public CircleView(Context context) { 32 | this(context, null); 33 | } 34 | 35 | public CircleView(Context context, AttributeSet attrs) { 36 | this(context, attrs, -1); 37 | } 38 | 39 | public CircleView(Context context, AttributeSet attrs, int defStyleAttr) { 40 | super(context, attrs, defStyleAttr); 41 | if (attrs != null) { 42 | TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CircleView); 43 | try { 44 | radius = a.getDimensionPixelSize( 45 | R.styleable.CircleView_cv___radius, DEFAULT_RADIUS); 46 | color = a.getInt( 47 | R.styleable.CircleView_cv___color, DEFAULT_COLOR); 48 | filled = a.getBoolean( 49 | R.styleable.CircleView_cv___filled, true); 50 | } finally { 51 | a.recycle(); 52 | } 53 | } 54 | 55 | paint = new Paint(Paint.ANTI_ALIAS_FLAG); 56 | paint.setStrokeWidth(strokeWidth); 57 | paint.setColor(color); 58 | if (filled) { 59 | paint.setStyle(Paint.Style.FILL); 60 | } else { 61 | paint.setStyle(Paint.Style.STROKE); 62 | } 63 | } 64 | 65 | public void setRadius(int radius) { 66 | this.radius = radius; 67 | invalidate(); 68 | } 69 | 70 | public void setColor(int color) { 71 | this.color = color; 72 | this.paint.setColor(color); 73 | invalidate(); 74 | } 75 | 76 | public void setFilled(boolean filled) { 77 | this.filled = filled; 78 | paint.setStyle(this.filled ? Paint.Style.FILL : Paint.Style.STROKE); 79 | } 80 | 81 | public boolean isFilled() { 82 | return filled; 83 | } 84 | 85 | public float getRadius() { 86 | return radius; 87 | } 88 | 89 | public float getStrokeWidth() { 90 | return strokeWidth; 91 | } 92 | 93 | public int getColor() { 94 | return color; 95 | } 96 | 97 | @Override 98 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 99 | setMeasuredDimension(measureWidth(widthMeasureSpec), measureHeight(heightMeasureSpec)); 100 | } 101 | 102 | /** 103 | * Measures height according to the passed measure spec 104 | * 105 | * @param measureSpec int measure spec to use 106 | * @return int pixel size 107 | */ 108 | protected int measureHeight(int measureSpec) { 109 | int specMode = MeasureSpec.getMode(measureSpec); 110 | int specSize = MeasureSpec.getSize(measureSpec); 111 | int result; 112 | if (specMode == MeasureSpec.EXACTLY) { 113 | result = specSize; 114 | } else { 115 | result = (int) (2 * radius) + getPaddingTop() + getPaddingBottom() + (int) (2 * strokeWidth); 116 | if (specMode == MeasureSpec.AT_MOST) { 117 | result = Math.min(result, specSize); 118 | } 119 | } 120 | return result; 121 | } 122 | 123 | /** 124 | * Measures width according to the passed measure spec 125 | * 126 | * @param measureSpec int measure spec to use 127 | * @return int pixel size 128 | */ 129 | protected int measureWidth(int measureSpec) { 130 | int specMode = MeasureSpec.getMode(measureSpec); 131 | int specSize = MeasureSpec.getSize(measureSpec); 132 | int result; 133 | if (specMode == MeasureSpec.EXACTLY) { 134 | result = specSize; 135 | } else { 136 | result = (int) (2 * radius) + getPaddingLeft() + getPaddingRight() + (int) (2 * strokeWidth); 137 | if (specMode == MeasureSpec.AT_MOST) { 138 | result = Math.min(result, specSize); 139 | } 140 | } 141 | return result; 142 | } 143 | 144 | @Override 145 | public void onDraw(Canvas canvas) { 146 | final int x = getWidth() >> 1; 147 | final int y = getHeight() >> 1; 148 | canvas.drawCircle(x, y, radius - strokeWidth, paint); 149 | super.onDraw(canvas); 150 | } 151 | } 152 | -------------------------------------------------------------------------------- /library/src/main/res/layout/v_animated_dots.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | library 3 | 4 | -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.1" 6 | 7 | defaultConfig { 8 | applicationId "com.github.channguyen.adv.sample" 9 | minSdkVersion 14 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | compile project(':library') 25 | } 26 | -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/chan/Desktop/android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /sample/sample.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /sample/src/androidTest/java/com/github/channguyen/adv/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.github.channguyen.adv; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /sample/src/main/java/com/github/channguyen/adv/sample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.github.channguyen.adv.sample; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | import com.github.channguyen.adv.AnimatedDotsView; 7 | 8 | public class MainActivity extends Activity { 9 | 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | setContentView(R.layout.activity_main); 14 | 15 | final AnimatedDotsView red = (AnimatedDotsView) findViewById(R.id.adv_1); 16 | red.startAnimation(); 17 | 18 | //final AnimatedDotsView yellow = (AnimatedDotsView) findViewById(R.id.adv_2); 19 | //yellow.startAnimation(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 18 | 19 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | animated-dot-view 3 | 4 | Hello world! 5 | Settings 6 | 7 | -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /screenshots/sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/screenshots/sc.gif -------------------------------------------------------------------------------- /screenshots/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxrook/animated-dot-view/e683ef336a6d44738616fc99f47b6a19b722f2b4/screenshots/sc.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sample', ':library' 2 | --------------------------------------------------------------------------------