Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steelkiwi/separateshapesview
Simple custom ViewGroup with two shapes inside and simple scale animation
https://github.com/steelkiwi/separateshapesview
android animation button custom-viewgroup java library
Last synced: about 8 hours ago
JSON representation
Simple custom ViewGroup with two shapes inside and simple scale animation
- Host: GitHub
- URL: https://github.com/steelkiwi/separateshapesview
- Owner: steelkiwi
- Created: 2017-07-14T06:49:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-14T08:04:56.000Z (over 7 years ago)
- Last Synced: 2023-10-20T23:14:34.389Z (about 1 year ago)
- Topics: android, animation, button, custom-viewgroup, java, library
- Language: Java
- Homepage: http://steelkiwi.com/
- Size: 861 KB
- Stars: 249
- Watchers: 14
- Forks: 42
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SeparateShapesView
[![Made in SteelKiwi](https://github.com/steelkiwi/SeparateShapesView/blob/master/assets/made_in_steelkiwi.png)](http://steelkiwi.com/blog/)
[ ![Download](https://api.bintray.com/packages/soulyaroslav/maven/separate-shapes-view/images/download.svg) ](https://bintray.com/soulyaroslav/maven/separate-shapes-view/_latestVersion)# Description
Simple custom ViewGroup with two shapes inside and simple scale animation
# View
![Animation](https://github.com/steelkiwi/SeparateShapesView/blob/master/assets/shape_animation_center.gif)
![Animation](https://github.com/steelkiwi/SeparateShapesView/blob/master/assets/shape_animation_left.gif)# Download
For project API 21+.
## Gradle
```gradle
compile 'com.steelkiwi:separate-shapes-view:1.1.0'
```# Usage
First of all, need add SeparateShapesView to your xml layout
```xml
```
You can customize view, through this attributes
* app:ssv_all_text_caps - set all text cups
* app:ssv_done_drawable - set icon when view is finish animate
* app:ssv_left_shape_drawable - left shape drawable
* app:ssv_right_shape_drawable - right shape drawable
* app:ssv_left_shape_text - left shape title
* app:ssv_right_shape_text - right shape title
* app:ssv_text_color - shape text color
* app:ssv_text_size - shape text size
* app:ssv_single_shape - set flag to not divide shapes
* app:ssv_center_shape_text - shape center textInside your client code need to implement listener SeparateShapesView.OnButtonClickListener to handle view click state.
OnButtonClickListener methods:* boolean onLeftButtonClick()
* boolean onRightButtonClick()
* boolean onMiddleButtonClick() // will call when use ssv_single_shape and ssv_center_shape_text is not nullIf any of the methods will returns true, view will animate. Otherwise nothing happens
# License
```
Copyright © 2017 SteelKiwi, http://steelkiwi.comLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```