├── .gitignore ├── LICENSE ├── README.md ├── ValueBarExample ├── .classpath ├── .project ├── AndroidManifest.xml ├── assets │ └── OpenSans-Light.ttf ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ └── valuebarlibrary-1-0-2.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable │ │ └── icon_small.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ └── strings.xml └── src │ └── com │ └── philjay │ └── valuebarexample │ ├── MainActivity.java │ ├── MyCustomColorFormatter.java │ └── MyCustomValueTextFormatter.java ├── ValueBarLib ├── .classpath ├── .project ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties └── src │ └── com │ └── philjay │ └── valuebar │ ├── Utils.java │ ├── ValueBar.java │ ├── ValueBarSelectionListener.java │ ├── ValueTextFormatter.java │ └── colors │ ├── BarColorFormatter.java │ ├── GreenToRedFormatter.java │ └── RedToGreenFormatter.java └── screenshots ├── adgraphic.jpg ├── icon.png ├── icon_small.png ├── valuebar2.png └── valuebar3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/README.md -------------------------------------------------------------------------------- /ValueBarExample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/.classpath -------------------------------------------------------------------------------- /ValueBarExample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/.project -------------------------------------------------------------------------------- /ValueBarExample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/AndroidManifest.xml -------------------------------------------------------------------------------- /ValueBarExample/assets/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/assets/OpenSans-Light.ttf -------------------------------------------------------------------------------- /ValueBarExample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/ic_launcher-web.png -------------------------------------------------------------------------------- /ValueBarExample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /ValueBarExample/libs/valuebarlibrary-1-0-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/libs/valuebarlibrary-1-0-2.jar -------------------------------------------------------------------------------- /ValueBarExample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/proguard-project.txt -------------------------------------------------------------------------------- /ValueBarExample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/project.properties -------------------------------------------------------------------------------- /ValueBarExample/res/drawable/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/drawable/icon_small.png -------------------------------------------------------------------------------- /ValueBarExample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ValueBarExample/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/menu/main.xml -------------------------------------------------------------------------------- /ValueBarExample/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /ValueBarExample/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/values/dimens.xml -------------------------------------------------------------------------------- /ValueBarExample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/res/values/strings.xml -------------------------------------------------------------------------------- /ValueBarExample/src/com/philjay/valuebarexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/src/com/philjay/valuebarexample/MainActivity.java -------------------------------------------------------------------------------- /ValueBarExample/src/com/philjay/valuebarexample/MyCustomColorFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/src/com/philjay/valuebarexample/MyCustomColorFormatter.java -------------------------------------------------------------------------------- /ValueBarExample/src/com/philjay/valuebarexample/MyCustomValueTextFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarExample/src/com/philjay/valuebarexample/MyCustomValueTextFormatter.java -------------------------------------------------------------------------------- /ValueBarLib/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/.classpath -------------------------------------------------------------------------------- /ValueBarLib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/.project -------------------------------------------------------------------------------- /ValueBarLib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/AndroidManifest.xml -------------------------------------------------------------------------------- /ValueBarLib/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/libs/android-support-v4.jar -------------------------------------------------------------------------------- /ValueBarLib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/proguard-project.txt -------------------------------------------------------------------------------- /ValueBarLib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/project.properties -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/Utils.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/ValueBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/ValueBar.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/ValueBarSelectionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/ValueBarSelectionListener.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/ValueTextFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/ValueTextFormatter.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/colors/BarColorFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/colors/BarColorFormatter.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/colors/GreenToRedFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/colors/GreenToRedFormatter.java -------------------------------------------------------------------------------- /ValueBarLib/src/com/philjay/valuebar/colors/RedToGreenFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/ValueBarLib/src/com/philjay/valuebar/colors/RedToGreenFormatter.java -------------------------------------------------------------------------------- /screenshots/adgraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/screenshots/adgraphic.jpg -------------------------------------------------------------------------------- /screenshots/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/screenshots/icon.png -------------------------------------------------------------------------------- /screenshots/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/screenshots/icon_small.png -------------------------------------------------------------------------------- /screenshots/valuebar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/screenshots/valuebar2.png -------------------------------------------------------------------------------- /screenshots/valuebar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilJay/ValueBar/HEAD/screenshots/valuebar3.png --------------------------------------------------------------------------------