├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── richbuttons ├── bin │ ├── richbuttons.jar │ ├── classes │ │ └── com │ │ │ └── uiparts │ │ │ └── richbuttons │ │ │ ├── R.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$integer.class │ │ │ ├── R$style.class │ │ │ ├── BuildConfig.class │ │ │ └── R$drawable.class │ └── AndroidManifest.xml ├── gen │ └── com │ │ └── uiparts │ │ └── richbuttons │ │ └── BuildConfig.java ├── .classpath ├── project.properties ├── build.gradle ├── .project ├── res │ ├── values │ │ ├── rb__integers.xml │ │ ├── rb__colors.xml │ │ └── rb__dimens.xml │ └── drawable │ │ ├── rb__button_text_color.xml │ │ ├── rb__button.xml │ │ ├── rb__button_red.xml │ │ ├── rb__button_ics.xml │ │ ├── rb__button_green.xml │ │ ├── rb__button_purple.xml │ │ ├── rb__button_yellow.xml │ │ ├── rb__button_darken.xml │ │ ├── rb__button_glossy.xml │ │ ├── rb__button_inverse.xml │ │ ├── rb__button_plastic.xml │ │ ├── rb__button_recessed.xml │ │ ├── rb__button_ics_black.xml │ │ ├── rb__button_inverse_red.xml │ │ ├── rb__button_inverse_blue.xml │ │ ├── rb__button_inverse_gray.xml │ │ ├── rb__button_inverse_black.xml │ │ ├── rb__button_inverse_green.xml │ │ ├── rb__button_inverse_orange.xml │ │ ├── rb__button_inverse_rounded.xml │ │ ├── rb__button_plastic_rounded.xml │ │ ├── rb__button_inverse_lightblue.xml │ │ ├── rb__button_inverse_rounded_red.xml │ │ ├── rb__button_inverse_rounded_blue.xml │ │ ├── rb__button_inverse_rounded_gray.xml │ │ ├── rb__button_inverse_rounded_black.xml │ │ ├── rb__button_inverse_rounded_green.xml │ │ ├── rb__button_inverse_rounded_orange.xml │ │ ├── rb__button_inverse_rounded_lightblue.xml │ │ ├── rb__button_default.xml │ │ ├── rb__button_darken_default.xml │ │ ├── rb__button_darken_pressed.xml │ │ ├── rb__button_inverse_default.xml │ │ ├── rb__button_inverse_black_default.xml │ │ ├── rb__button_inverse_blue_default.xml │ │ ├── rb__button_inverse_gray_default.xml │ │ ├── rb__button_inverse_green_default.xml │ │ ├── rb__button_inverse_orange_default.xml │ │ ├── rb__button_inverse_red_default.xml │ │ ├── rb__button_inverse_lightblue_default.xml │ │ ├── rb__button_pressed.xml │ │ ├── rb__button_green_pressed.xml │ │ ├── rb__button_red_pressed.xml │ │ ├── rb__button_purple_pressed.xml │ │ ├── rb__button_yellow_pressed.xml │ │ ├── rb__button_inverse_rounded_default.xml │ │ ├── rb__button_inverse_rounded_red_default.xml │ │ ├── rb__button_inverse_rounded_black_default.xml │ │ ├── rb__button_inverse_rounded_blue_default.xml │ │ ├── rb__button_inverse_rounded_gray_default.xml │ │ ├── rb__button_inverse_rounded_green_default.xml │ │ ├── rb__button_inverse_rounded_orange_default.xml │ │ ├── rb__button_inverse_rounded_lightblue_default.xml │ │ ├── rb__button_glossy_default.xml │ │ ├── rb__button_glossy_pressed.xml │ │ ├── rb__button_ics_default.xml │ │ ├── rb__button_ics_black_default.xml │ │ ├── rb__button_inverse_pressed.xml │ │ ├── rb__button_inverse_blue_pressed.xml │ │ ├── rb__button_inverse_gray_pressed.xml │ │ ├── rb__button_inverse_red_pressed.xml │ │ ├── rb__button_recessed_default.xml │ │ ├── rb__button_inverse_black_pressed.xml │ │ ├── rb__button_inverse_green_pressed.xml │ │ ├── rb__button_inverse_lightblue_pressed.xml │ │ ├── rb__button_inverse_orange_pressed.xml │ │ ├── rb__button_inverse_rounded_pressed.xml │ │ ├── rb__button_inverse_rounded_blue_pressed.xml │ │ ├── rb__button_inverse_rounded_gray_pressed.xml │ │ └── rb__button_inverse_rounded_red_pressed.xml └── AndroidManifest.xml ├── richbuttons-samples ├── images │ ├── ICS.png │ ├── blue.png │ ├── red.png │ ├── darken.png │ ├── glossy.png │ ├── green.png │ ├── inverse.png │ ├── plastic.png │ ├── purple.png │ ├── yellow.png │ ├── ICS.black.png │ ├── recessed.png │ ├── ICS_pressed.png │ ├── blue_pressed.png │ ├── inverse.blue.png │ ├── inverse.gray.png │ ├── inverse.red.png │ ├── red_pressed.png │ ├── screenshot.png │ ├── darken_pressed.png │ ├── glossy_pressed.png │ ├── green_pressed.png │ ├── inverse.black.png │ ├── inverse.green.png │ ├── inverse.orange.png │ ├── purple_pressed.png │ ├── yellow_pressed.png │ ├── ICS.black_pressed.png │ ├── inverse.lightblue.png │ ├── inverse.rounded.png │ ├── inverse_pressed.png │ ├── plastic.rounded.png │ ├── plastic_pressed.png │ ├── recessed_pressed.png │ ├── inverse.red_pressed.png │ ├── inverse.rounded.red.png │ ├── inverse.black_pressed.png │ ├── inverse.blue_pressed.png │ ├── inverse.gray_pressed.png │ ├── inverse.green_pressed.png │ ├── inverse.orange_pressed.png │ ├── inverse.rounded.black.png │ ├── inverse.rounded.blue.png │ ├── inverse.rounded.gray.png │ ├── inverse.rounded.green.png │ ├── inverse.rounded.orange.png │ ├── inverse.rounded_pressed.png │ ├── plastic.rounded_pressed.png │ ├── inverse.lightblue_pressed.png │ ├── inverse.rounded.lightblue.png │ ├── inverse.rounded.red_pressed.png │ ├── inverse.rounded.black_pressed.png │ ├── inverse.rounded.blue_pressed.png │ ├── inverse.rounded.gray_pressed.png │ ├── inverse.rounded.green_pressed.png │ ├── inverse.rounded.orange_pressed.png │ └── inverse.rounded.lightblue_pressed.png ├── demos │ ├── libs │ │ └── android-support-v4.jar │ ├── bin │ │ ├── jarlist.cache │ │ ├── classes │ │ │ └── com │ │ │ │ └── uiparts │ │ │ │ └── richbuttons │ │ │ │ ├── R.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$style.class │ │ │ │ ├── demo │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── BuildConfig.class │ │ │ │ └── MainActivity.class │ │ │ │ ├── R$drawable.class │ │ │ │ └── R$integer.class │ │ └── AndroidManifest.xml │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── menu │ │ │ └── activity_main.xml │ ├── gen │ │ └── com │ │ │ └── uiparts │ │ │ └── richbuttons │ │ │ └── demo │ │ │ └── BuildConfig.java │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ ├── build.gradle │ ├── AndroidManifest.xml │ ├── src │ │ └── com │ │ │ └── uiparts │ │ │ └── richbuttons │ │ │ └── demo │ │ │ └── MainActivity.java │ └── pom.xml └── pom.xml ├── .gitignore ├── .travis.yml ├── LICENSE.txt └── gradlew.bat /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':richbuttons-samples:demos' 2 | include ':richbuttons' 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /richbuttons/bin/richbuttons.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/richbuttons.jar -------------------------------------------------------------------------------- /richbuttons-samples/images/ICS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/ICS.png -------------------------------------------------------------------------------- /richbuttons-samples/images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/blue.png -------------------------------------------------------------------------------- /richbuttons-samples/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/red.png -------------------------------------------------------------------------------- /richbuttons-samples/images/darken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/darken.png -------------------------------------------------------------------------------- /richbuttons-samples/images/glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/glossy.png -------------------------------------------------------------------------------- /richbuttons-samples/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/green.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.png -------------------------------------------------------------------------------- /richbuttons-samples/images/plastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/plastic.png -------------------------------------------------------------------------------- /richbuttons-samples/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/purple.png -------------------------------------------------------------------------------- /richbuttons-samples/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/yellow.png -------------------------------------------------------------------------------- /richbuttons-samples/images/ICS.black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/ICS.black.png -------------------------------------------------------------------------------- /richbuttons-samples/images/recessed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/recessed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/ICS_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/ICS_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/blue_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.blue.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.gray.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.red.png -------------------------------------------------------------------------------- /richbuttons-samples/images/red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/red_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/screenshot.png -------------------------------------------------------------------------------- /richbuttons-samples/images/darken_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/darken_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/glossy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/glossy_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/green_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.black.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.green.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.orange.png -------------------------------------------------------------------------------- /richbuttons-samples/images/purple_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/purple_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/yellow_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/yellow_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/ICS.black_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/ICS.black_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.lightblue.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/plastic.rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/plastic.rounded.png -------------------------------------------------------------------------------- /richbuttons-samples/images/plastic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/plastic_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/recessed_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/recessed_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.red_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.red.png -------------------------------------------------------------------------------- /richbuttons-samples/demos/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/libs/android-support-v4.jar -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.black_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.black_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.blue_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.gray_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.gray_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.green_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.orange_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.orange_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.black.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.blue.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.gray.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.green.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.orange.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/plastic.rounded_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/plastic.rounded_pressed.png -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R.class -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.lightblue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.lightblue_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.lightblue.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.red_pressed.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | library/bin 2 | library/gen 3 | samples/demos/bin 4 | samples/demos/gen 5 | .gradle/ 6 | build/ 7 | target/ 8 | .idea/ 9 | *.iml 10 | local.properties 11 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.black_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.black_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.blue_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.gray_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.gray_pressed.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.green_pressed.png -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$attr.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.orange_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.orange_pressed.png -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$color.class -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$dimen.class -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$integer.class -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$style.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RichButtonsDemo 5 | 6 | -------------------------------------------------------------------------------- /richbuttons-samples/images/inverse.rounded.lightblue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/images/inverse.rounded.lightblue_pressed.png -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/BuildConfig.class -------------------------------------------------------------------------------- /richbuttons/bin/classes/com/uiparts/richbuttons/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons/bin/classes/com/uiparts/richbuttons/R$drawable.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$color.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$dimen.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$style.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$drawable.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/R$integer.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$id.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$attr.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$color.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$dimen.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$menu.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$style.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$drawable.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$integer.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$layout.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/R$string.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/BuildConfig.class -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksoichiro/RichButtons/HEAD/richbuttons-samples/demos/bin/classes/com/uiparts/richbuttons/demo/MainActivity.class -------------------------------------------------------------------------------- /richbuttons/gen/com/uiparts/richbuttons/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.uiparts.richbuttons; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /richbuttons-samples/demos/gen/com/uiparts/richbuttons/demo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.uiparts.richbuttons.demo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Oct 26 11:36:52 JST 2014 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=http\://services.gradle.org/distributions/gradle-2.1-all.zip 7 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /richbuttons/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/menu/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | android: 3 | components: 4 | - build-tools-21.0.2 5 | - tools 6 | - android-19 7 | - android-21 8 | - system-image 9 | - extra-android-support 10 | - extra-android-m2repository 11 | licenses: 12 | - 'android-sdk-license-.+' 13 | before_script: 14 | - echo no | android create avd --force -n test -t android-19 --abi default/armeabi-v7a 15 | - emulator -avd test -no-skin -no-audio -no-window & 16 | - android-wait-for-emulator 17 | script: 18 | - travis_retry ./gradlew :richbuttons:assemble :richbuttons-samples:demos:assembleDebug 19 | -------------------------------------------------------------------------------- /richbuttons/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 | android.library=true 16 | -------------------------------------------------------------------------------- /richbuttons/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | mavenCentral() 4 | } 5 | dependencies { 6 | classpath 'com.android.tools.build:gradle:0.13.3' 7 | } 8 | } 9 | 10 | apply plugin: 'com.android.library' 11 | 12 | android { 13 | compileSdkVersion 21 14 | buildToolsVersion "21.0.2" 15 | 16 | sourceSets { 17 | main { 18 | manifest.srcFile 'AndroidManifest.xml' 19 | java.srcDirs = [] 20 | resources.srcDirs = [] 21 | aidl.srcDirs = [] 22 | renderscript.srcDirs = [] 23 | res.srcDirs = ['res'] 24 | assets.srcDirs = ['assets'] 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/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 | android.library.reference.1=../../richbuttons 16 | -------------------------------------------------------------------------------- /richbuttons-samples/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | 5 | 6 | com.github.ksoichiro 7 | richbuttons-parent 8 | 0.1.1 9 | ../pom.xml 10 | 11 | 12 | richbuttons-samples 13 | RichButtons Samples 14 | pom 15 | 16 | 17 | demos 18 | 19 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/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 | -------------------------------------------------------------------------------- /richbuttons/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | RichButtons 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 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | RichButtonsDemo 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 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 Soichiro Kashima. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | 21 | -------------------------------------------------------------------------------- /richbuttons/res/values/rb__integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 0 26 | -1 27 | 2 28 | 29 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | mavenCentral() 4 | } 5 | dependencies { 6 | classpath 'com.android.tools.build:gradle:0.13.3' 7 | } 8 | } 9 | 10 | apply plugin: 'com.android.application' 11 | 12 | dependencies { 13 | compile fileTree(dir: 'libs', include: '*.jar') 14 | compile project(':richbuttons') 15 | } 16 | 17 | android { 18 | compileSdkVersion 21 19 | buildToolsVersion "21.0.2" 20 | 21 | sourceSets { 22 | main { 23 | manifest.srcFile 'AndroidManifest.xml' 24 | java.srcDirs = ['src'] 25 | resources.srcDirs = ['src'] 26 | aidl.srcDirs = ['src'] 27 | renderscript.srcDirs = ['src'] 28 | res.srcDirs = ['res'] 29 | assets.srcDirs = ['assets'] 30 | } 31 | 32 | // Move the tests to tests/java, tests/res, etc... 33 | androidTest.setRoot('tests') 34 | 35 | // Move the build types to build-types/ 36 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ... 37 | // This moves them out of them default location under src//... which would 38 | // conflict with src/ being used by the main source set. 39 | // Adding new build types or product flavors should be accompanied 40 | // by a similar customization. 41 | debug.setRoot('build-types/debug') 42 | release.setRoot('build-types/release') 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /richbuttons/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 22 | 23 | 27 | 28 | 31 | 32 | -------------------------------------------------------------------------------- /richbuttons/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 22 | 23 | 27 | 28 | 31 | 32 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 25 | 26 | 31 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 25 | 26 | 31 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /richbuttons/res/values/rb__colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | #CC999999 26 | #FF333333 27 | #FFFFFFFF 28 | #FF333333 29 | #FFFFFFFF 30 | #FF333333 31 | #FFCCCCCC 32 | 33 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_ics.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_yellow.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_darken.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_glossy.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_plastic.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_recessed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_ics_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_plastic_rounded.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_lightblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_lightblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/src/com/uiparts/richbuttons/demo/MainActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013 Soichiro Kashima 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.uiparts.richbuttons.demo; 18 | 19 | import android.app.Activity; 20 | import android.graphics.Color; 21 | import android.os.Bundle; 22 | import android.view.Menu; 23 | import android.view.MenuItem; 24 | 25 | public class MainActivity extends Activity { 26 | 27 | @Override 28 | protected void onCreate(Bundle savedInstanceState) { 29 | super.onCreate(savedInstanceState); 30 | // Just show the button styles. 31 | // See res/layout/activity_main.xml. 32 | setContentView(R.layout.activity_main); 33 | } 34 | 35 | @Override 36 | public boolean onCreateOptionsMenu(Menu menu) { 37 | getMenuInflater().inflate(R.menu.activity_main, menu); 38 | return true; 39 | } 40 | 41 | @Override 42 | public boolean onOptionsItemSelected(MenuItem item) { 43 | int id = item.getItemId(); 44 | switch (id) { 45 | case R.id.menu_color_white: 46 | setBackgroundColor(Color.WHITE); 47 | break; 48 | case R.id.menu_color_black: 49 | setBackgroundColor(Color.BLACK); 50 | break; 51 | } 52 | return false; 53 | } 54 | 55 | private void setBackgroundColor(int color) { 56 | findViewById(R.id.root).setBackgroundColor(color); 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /richbuttons-samples/demos/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | 5 | 6 | com.github.ksoichiro 7 | richbuttons-samples 8 | 0.1.1 9 | ../pom.xml 10 | 11 | 12 | richbuttons-samples-demos 13 | RichButtons Samples: Demos 14 | apk 15 | 16 | 17 | 18 | com.google.android 19 | android 20 | provided 21 | 22 | 23 | com.google.android 24 | support-v4 25 | ${android-support.version} 26 | 27 | 28 | ${project.groupId} 29 | richbuttons 30 | ${project.version} 31 | apklib 32 | 33 | 34 | 35 | 36 | src/main/java 37 | 38 | 39 | com.jayway.maven.plugins.android.generation2 40 | android-maven-plugin 41 | true 42 | 43 | 44 | org.apache.maven.plugins 45 | maven-javadoc-plugin 46 | 47 | true 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /richbuttons/res/values/rb__dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 48dp 27 | 28 | 29 | 42dp 30 | 31 | 32 | 8dp 33 | 34 | 35 | 8dp 36 | 37 | 38 | 24dp 39 | 40 | 41 | 1dp 42 | 43 | 44 | 24dp 45 | 46 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_darken_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_darken_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_black_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_blue_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_gray_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_green_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_orange_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_red_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_lightblue_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_green_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_red_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_purple_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_yellow_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_red_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_black_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_blue_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_gray_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_green_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_orange_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_lightblue_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_glossy_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 54 | 55 | 56 | 57 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_glossy_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 54 | 55 | 56 | 57 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_ics_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 37 | 38 | 39 | 44 | 45 | 46 | 47 | 51 | 52 | 55 | 56 | 57 | 62 | 63 | 64 | 65 | 69 | 70 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_ics_black_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 37 | 38 | 39 | 44 | 45 | 46 | 47 | 51 | 52 | 55 | 56 | 57 | 62 | 63 | 64 | 65 | 69 | 70 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 71 | 72 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_blue_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_gray_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_red_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_recessed_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_black_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_green_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_lightblue_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_orange_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_blue_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_gray_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /richbuttons/res/drawable/rb__button_inverse_rounded_red_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 61 | 62 | 63 | 66 | 67 | 68 | 69 | 73 | 74 | 77 | 78 | 79 | 80 | --------------------------------------------------------------------------------