├── ring.gif ├── ringselector.gif ├── Lib └── CirclePercentDemo │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs │ ├── bin │ ├── classes.dex │ ├── resources.ap_ │ ├── CirclePercentDemo.apk │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ ├── classes │ │ ├── com │ │ │ └── magic │ │ │ │ └── circlepercentdemo │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── RingPercentView.class │ │ │ │ └── RingPercentView$1.class │ │ └── android │ │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$drawable.class │ │ │ ├── R$integer.class │ │ │ └── R$styleable.class │ ├── dexedLibs │ │ ├── appcompat_v7-759ff6580930298027215741a53e436b.jar │ │ ├── android-support-v4-5b52708d05769f1869c41ba415368535.jar │ │ └── android-support-v7-appcompat-2a94427907ed7f6ec6fcc4f960338de1.jar │ ├── jarlist.cache │ ├── AndroidManifest.xml │ └── R.txt │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── attrs.xml │ │ └── styles.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ ├── values-v14 │ │ └── styles.xml │ ├── menu │ │ └── main.xml │ └── layout │ │ └── activity_main.xml │ ├── gen │ ├── com │ │ └── magic │ │ │ └── circlepercentdemo │ │ │ └── BuildConfig.java │ └── android │ │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ ├── AndroidManifest.xml │ └── src │ └── com │ └── magic │ └── circlepercentdemo │ ├── MainActivity.java │ └── RingPercentView.java ├── .gitattributes ├── .gitignore └── README.md /ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/ring.gif -------------------------------------------------------------------------------- /ringselector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/ringselector.gif -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes.dex -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/resources.ap_ -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/CirclePercentDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/CirclePercentDemo.apk -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$id.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$anim.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$attr.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$bool.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$menu.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$color.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$dimen.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$integer.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$layout.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$string.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$style.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/BuildConfig.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$drawable.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/R$styleable.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/MainActivity.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/RingPercentView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/RingPercentView.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/RingPercentView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/classes/com/magic/circlepercentdemo/RingPercentView$1.class -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/dexedLibs/appcompat_v7-759ff6580930298027215741a53e436b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/dexedLibs/appcompat_v7-759ff6580930298027215741a53e436b.jar -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/dexedLibs/android-support-v4-5b52708d05769f1869c41ba415368535.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/dexedLibs/android-support-v4-5b52708d05769f1869c41ba415368535.jar -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/gen/com/magic/circlepercentdemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.magic.circlepercentdemo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/dexedLibs/android-support-v7-appcompat-2a94427907ed7f6ec6fcc4f960338de1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichangqiang/RingPercentView/HEAD/Lib/CirclePercentDemo/bin/dexedLibs/android-support-v7-appcompat-2a94427907ed7f6ec6fcc4f960338de1.jar -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CirclePercentDemo 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1464139489741 1422188 1dc1f63cee098b27db60b9a2833fd7ca58f89636 C:\Android\Trainning\CirclePercentDemo\libs\android-support-v4.jar 5 | 1461479038799 1422188 1dc1f63cee098b27db60b9a2833fd7ca58f89636 C:\Android\Trainning\appcompat_v7\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-23 15 | android.library.reference.1=../appcompat_v7 16 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CirclePercentDemo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Lib/CirclePercentDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 13 | 14 | 21 | 22 | 28 | 29 |