├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── co │ │ └── ceryle │ │ └── segmentedbutton │ │ ├── BackgroundHelper.java │ │ ├── BackgroundView.java │ │ ├── ConversionHelper.java │ │ ├── RippleHelper.java │ │ ├── RoundHelper.java │ │ ├── SegmentedButton.java │ │ └── SegmentedButtonGroup.java │ └── res │ └── values │ └── attrs.xml ├── sample ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── fonts │ │ ├── aniron.ttf │ │ └── shaka_pow.ttf │ ├── java │ └── co │ │ └── ceryle │ │ └── segmentedbutton │ │ └── sample │ │ ├── MainActivity.java │ │ └── drawable │ │ └── BadgeDrawable.java │ └── res │ ├── drawable-hdpi │ ├── ic_aragorn.png │ ├── ic_b1.png │ ├── ic_b11.png │ ├── ic_b12.png │ ├── ic_b13.png │ ├── ic_b17.png │ ├── ic_b2.png │ ├── ic_b3.png │ ├── ic_b4.png │ ├── ic_b5.png │ ├── ic_b6.png │ ├── ic_b7.png │ ├── ic_b8.png │ ├── ic_b9.png │ ├── ic_gimli.png │ └── ic_legolas.png │ ├── drawable-mdpi │ ├── ic_aragorn.png │ ├── ic_b1.png │ ├── ic_b11.png │ ├── ic_b12.png │ ├── ic_b13.png │ ├── ic_b17.png │ ├── ic_b2.png │ ├── ic_b3.png │ ├── ic_b4.png │ ├── ic_b5.png │ ├── ic_b6.png │ ├── ic_b7.png │ ├── ic_b8.png │ ├── ic_b9.png │ ├── ic_gimli.png │ └── ic_legolas.png │ ├── drawable-xhdpi │ ├── ic_aragorn.png │ ├── ic_b1.png │ ├── ic_b11.png │ ├── ic_b12.png │ ├── ic_b13.png │ ├── ic_b17.png │ ├── ic_b2.png │ ├── ic_b3.png │ ├── ic_b4.png │ ├── ic_b5.png │ ├── ic_b6.png │ ├── ic_b7.png │ ├── ic_b8.png │ ├── ic_b9.png │ ├── ic_gimli.png │ └── ic_legolas.png │ ├── drawable-xxhdpi │ ├── ic_aragorn.png │ ├── ic_b1.png │ ├── ic_b11.png │ ├── ic_b12.png │ ├── ic_b13.png │ ├── ic_b17.png │ ├── ic_b2.png │ ├── ic_b3.png │ ├── ic_b4.png │ ├── ic_b5.png │ ├── ic_b6.png │ ├── ic_b7.png │ ├── ic_b8.png │ ├── ic_b9.png │ ├── ic_gimli.png │ └── ic_legolas.png │ ├── drawable-xxxhdpi │ ├── ic_aragorn.png │ ├── ic_b1.png │ ├── ic_b11.png │ ├── ic_b12.png │ ├── ic_b13.png │ ├── ic_b17.png │ ├── ic_b2.png │ ├── ic_b3.png │ ├── ic_b4.png │ ├── ic_b5.png │ ├── ic_b6.png │ ├── ic_b7.png │ ├── ic_b8.png │ ├── ic_b9.png │ ├── ic_gimli.png │ └── ic_legolas.png │ ├── drawable │ ├── gradient_drawable.xml │ ├── gradient_drawable_divider.xml │ └── gradient_drawable_selector.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/BackgroundHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/BackgroundHelper.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/BackgroundView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/BackgroundView.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/ConversionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/ConversionHelper.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/RippleHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/RippleHelper.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/RoundHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/RoundHelper.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/SegmentedButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/SegmentedButton.java -------------------------------------------------------------------------------- /library/src/main/java/co/ceryle/segmentedbutton/SegmentedButtonGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/java/co/ceryle/segmentedbutton/SegmentedButtonGroup.java -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/assets/fonts/aniron.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/assets/fonts/aniron.ttf -------------------------------------------------------------------------------- /sample/src/main/assets/fonts/shaka_pow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/assets/fonts/shaka_pow.ttf -------------------------------------------------------------------------------- /sample/src/main/java/co/ceryle/segmentedbutton/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/java/co/ceryle/segmentedbutton/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/co/ceryle/segmentedbutton/sample/drawable/BadgeDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/java/co/ceryle/segmentedbutton/sample/drawable/BadgeDrawable.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_aragorn.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b11.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b12.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b13.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b17.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b5.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b6.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b7.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b8.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_b9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_gimli.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-hdpi/ic_legolas.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_aragorn.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b11.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b12.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b13.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b17.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b5.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b6.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b7.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b8.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_b9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_gimli.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-mdpi/ic_legolas.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_aragorn.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b11.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b12.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b13.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b17.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b5.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b6.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b7.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b8.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_b9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_gimli.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xhdpi/ic_legolas.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_aragorn.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b11.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b12.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b13.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b17.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b5.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b6.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b7.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b8.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_b9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_gimli.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxhdpi/ic_legolas.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_aragorn.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b1.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b11.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b12.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b13.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b17.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b2.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b3.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b4.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b5.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b6.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b7.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b8.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_b9.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_gimli.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_legolas.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable/gradient_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable/gradient_drawable.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/gradient_drawable_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable/gradient_drawable_divider.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/gradient_drawable_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/drawable/gradient_drawable_selector.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceryle/SegmentedButton/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sample', ':library' 2 | --------------------------------------------------------------------------------