├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── androidchils │ │ └── odometerlibrary │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── Lato-Black.ttf │ │ ├── Lato-BlackItalic.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-BoldItalic.ttf │ │ ├── Lato-Hairline.ttf │ │ ├── Lato-HairlineItalic.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-LightItalic.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Screenshot 2.png │ │ ├── Screenshot 3.png │ │ └── screenshot 1.png │ ├── java │ │ └── com │ │ │ └── androidchils │ │ │ └── odometerlibrary │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── androidchils │ └── odometerlibrary │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── odometer ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── androidchils │ │ └── odometer │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── Lato-Black.ttf │ │ ├── Lato-BlackItalic.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-BoldItalic.ttf │ │ ├── Lato-Hairline.ttf │ │ ├── Lato-HairlineItalic.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-LightItalic.ttf │ │ └── Lato-Regular.ttf │ ├── java │ │ └── com │ │ │ └── androidchils │ │ │ └── odometer │ │ │ ├── NumberPicker.java │ │ │ └── Odometer.java │ └── res │ │ ├── drawable │ │ ├── gradient.xml │ │ └── np_numberpicker_selection_divider.9.png │ │ ├── layout │ │ ├── number_picker.xml │ │ └── number_picker_selector_wheel.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── color.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── androidchils │ └── odometer │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/androidchils/odometerlibrary/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/androidTest/java/com/androidchils/odometerlibrary/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Bold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Hairline.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Italic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Lato-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Screenshot 2.png -------------------------------------------------------------------------------- /app/src/main/assets/Screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/Screenshot 3.png -------------------------------------------------------------------------------- /app/src/main/assets/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/assets/screenshot 1.png -------------------------------------------------------------------------------- /app/src/main/java/com/androidchils/odometerlibrary/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/java/com/androidchils/odometerlibrary/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/androidchils/odometerlibrary/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/app/src/test/java/com/androidchils/odometerlibrary/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/gradlew.bat -------------------------------------------------------------------------------- /odometer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /odometer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/build.gradle -------------------------------------------------------------------------------- /odometer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/proguard-rules.pro -------------------------------------------------------------------------------- /odometer/src/androidTest/java/com/androidchils/odometer/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/androidTest/java/com/androidchils/odometer/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /odometer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Black.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Bold.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Hairline.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Italic.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Light.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /odometer/src/main/assets/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/assets/Lato-Regular.ttf -------------------------------------------------------------------------------- /odometer/src/main/java/com/androidchils/odometer/NumberPicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/java/com/androidchils/odometer/NumberPicker.java -------------------------------------------------------------------------------- /odometer/src/main/java/com/androidchils/odometer/Odometer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/java/com/androidchils/odometer/Odometer.java -------------------------------------------------------------------------------- /odometer/src/main/res/drawable/gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/drawable/gradient.xml -------------------------------------------------------------------------------- /odometer/src/main/res/drawable/np_numberpicker_selection_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/drawable/np_numberpicker_selection_divider.9.png -------------------------------------------------------------------------------- /odometer/src/main/res/layout/number_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/layout/number_picker.xml -------------------------------------------------------------------------------- /odometer/src/main/res/layout/number_picker_selector_wheel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/layout/number_picker_selector_wheel.xml -------------------------------------------------------------------------------- /odometer/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /odometer/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/values/color.xml -------------------------------------------------------------------------------- /odometer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /odometer/src/test/java/com/androidchils/odometer/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chils17/OdometerLibrary/HEAD/odometer/src/test/java/com/androidchils/odometer/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':odometer' 2 | --------------------------------------------------------------------------------