├── bin ├── classes.dex ├── resources.ap_ ├── CircleProgress.apk ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── classes │ └── com │ │ └── example │ │ ├── circlepregress │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$menu.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── BuildConfig.class │ │ ├── R$drawable.class │ │ └── R$styleable.class │ │ └── roundprogressbar │ │ ├── MainActivity.class │ │ ├── MainActivity$1.class │ │ └── RoundProgressBar.class ├── jarlist.cache ├── dexedLibs │ └── android-support-v4-524c7f90dc3c9407fb4f0acb13088de3.jar └── AndroidManifest.xml ├── ic_launcher-web.png ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── libs └── android-support-v4.jar ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── values │ ├── strings.xml │ ├── attrs.xml │ └── styles.xml ├── menu │ └── activity_cricle_progress.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── layout │ └── activity_cricle_progress.xml ├── gen └── com │ └── example │ └── circlepregress │ ├── BuildConfig.java │ └── R.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project ├── AndroidManifest.xml └── src └── com └── example └── roundprogressbar ├── MainActivity.java └── RoundProgressBar.java /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bin/CircleProgress.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/CircleProgress.apk -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/res/crunch/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R.class -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/example/circlepregress/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/circlepregress/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/example/roundprogressbar/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/roundprogressbar/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/example/roundprogressbar/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/roundprogressbar/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/example/roundprogressbar/RoundProgressBar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/classes/com/example/roundprogressbar/RoundProgressBar.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-524c7f90dc3c9407fb4f0acb13088de3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackCho/RoundProgressBar/HEAD/bin/dexedLibs/android-support-v4-524c7f90dc3c9407fb4f0acb13088de3.jar -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /gen/com/example/circlepregress/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.circlepregress; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CirclePregress 5 | Hello world! 6 | Settings 7 | 8 | -------------------------------------------------------------------------------- /res/menu/activity_cricle_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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-17 15 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CircleProgress 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 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/com/example/roundprogressbar/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.roundprogressbar; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.View; 6 | import android.view.View.OnClickListener; 7 | import android.widget.Button; 8 | 9 | import com.example.circlepregress.R; 10 | 11 | public class MainActivity extends Activity { 12 | private RoundProgressBar mRoundProgressBar1, mRoundProgressBar2 ,mRoundProgressBar3, mRoundProgressBar4, mRoundProgressBar5; 13 | private int progress = 0; 14 | 15 | 16 | @Override 17 | protected void onCreate(Bundle savedInstanceState) { 18 | super.onCreate(savedInstanceState); 19 | setContentView(R.layout.activity_cricle_progress); 20 | 21 | mRoundProgressBar1 = (RoundProgressBar) findViewById(R.id.roundProgressBar1); 22 | mRoundProgressBar2 = (RoundProgressBar) findViewById(R.id.roundProgressBar2); 23 | mRoundProgressBar3 = (RoundProgressBar) findViewById(R.id.roundProgressBar3); 24 | mRoundProgressBar4 = (RoundProgressBar) findViewById(R.id.roundProgressBar4); 25 | mRoundProgressBar5 = (RoundProgressBar) findViewById(R.id.roundProgressBar5); 26 | 27 | ((Button)findViewById(R.id.button1)).setOnClickListener(new OnClickListener() { 28 | 29 | @Override 30 | public void onClick(View v) { 31 | if(progress <= 100){ 32 | progress += 10; 33 | mRoundProgressBar1.setProgress(progress); 34 | mRoundProgressBar2.setProgress(progress); 35 | mRoundProgressBar3.setProgress(progress); 36 | mRoundProgressBar4.setProgress(progress); 37 | mRoundProgressBar5.setProgress(progress); 38 | } 39 | } 40 | }); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /res/layout/activity_cricle_progress.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 30 | 31 | 41 | 42 | 49 | 50 |