# SubmitButton **Repository Path**: baijuncheng-open-source/submit-button ## Basic Information - **Project Name**: SubmitButton - **Description**: SubmitButton是一个带有动画的提交按钮库 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-31 - **Last Updated**: 2024-06-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## SubmitButton >It's a submit button with a fun animation application. # demo effect ![](/screens/submitbutton_failed.gif) ![](/screens/submitbutton_progress.gif) ![](/screens/submitbutton_succeed.gif) ## Getting Started ##### 1.Specify SubmitButton as a dependency in your build.gradle file; dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testCompile 'junit:junit:4.12' compile project(path: ':submitbuttonview') } ##### 2.Remote dependency ``` dependencies { implementation ‘com.gitee.baijuncheng-open-source:SubmitButton:1.0.0’ } ``` ##### 2.Add SubmitButton to the layout file; ##### 3.Attribute | name | format | description |default | |:--------------|:----- |:------------------------------------------------------|:--------| |buttonColor |color |set the button theme color |#19CC95 | |buttonText |String |set the button text |null | |buttonTextSize |dimension |set the button text size |15sp | |succeedColor |color |set the button color after the submission is successful|#19CC95 | |failedColor |color |set the button color after the submission fails |#FC8E34 | |progressStyle |enum |set the button progress style (Optional:loading or progress) |loading| ##### 4.Method /** * Pass the results to show different feedback results * * @param boolean isSucceed */ mSubmitView.doResult(boolean isSucceed); /** * Reset SubmitButton */ mSubmitView.reset(); /** * set progress(This method is valid only if progressStyle is set to progress) * * @param progress (0-100) */ mSubmitView.setProgress(); /** * set the animation end callback interface * * @param listener */ mSubmitView.setOnResultEndListener(OnResultEndListener listener) ## Change Log ### [v1.0.0]) (2021-07-12) - 新增SubmitButton库 - 修改稳定性问题,运行异常问题 ## License Copyright 2017 Unstoppable Licensed 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 at http://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.