Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SparkYuan/SubmitButton
A cool and elegant Submit Button
https://github.com/SparkYuan/SubmitButton
Last synced: about 1 month ago
JSON representation
A cool and elegant Submit Button
- Host: GitHub
- URL: https://github.com/SparkYuan/SubmitButton
- Owner: SparkYuan
- License: mit
- Created: 2016-07-20T02:38:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-04T08:59:59.000Z (over 3 years ago)
- Last Synced: 2024-08-03T01:15:13.240Z (4 months ago)
- Language: Java
- Size: 1.96 MB
- Stars: 558
- Watchers: 15
- Forks: 107
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-android-ui - SubmitButton - 实用酷炫又优雅的提交按钮 (按钮)
README
# SubmitButton
A practical, cool and elegant Submit Button## Demo
![Demo](https://github.com/SparkYuan/SubmitButton/blob/master/pic/submitbutton.gif)## Attributes
```xml
```
### Notice
- SubmitButton is a subclass of TextView, so almost all attributes of TextView can be used for SubmitButton.
- The width and height of this SubmitButton is measured by the text size and its **layout_width** and **layout_height** must be **match_parent**.
- The default gravity of the text in this SubmitButton is **center** and can not be changed.## Download
Step 1. Configure your project-level build.gradle to include the follow repository:
```gradle
repositories {
maven {
url 'https://dl.bintray.com/spark/maven'
}
}
```Step 2. Add the dependency:
```gradle
dependencies {
compile 'me.spark:submitbutton:1.0.1'
}
```##**Lincense**
```lincense
The MIT License (MIT)Copyright (c) 2016 Spark
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.