3 Star 1 Fork 1

Gitee 极速下载 / SubmitButton

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/Someonewow/SubmitButton
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

SubmitButton

Travis

README: English | 中文

带有进度动画的Android自定义提交按钮.

示例

submit succeed

submit failed

submit progress

如何使用

1.在要使用的Module的build.gradle文件中添加依赖;
dependencies {
	'''
	compile 'com.unstoppable:submitbutton:1.1.3'
}
2.布局文件中添加SubmitButton;
<com.unstoppable.submitbuttonview.SubmitButton
    android:id="@+id/submitbutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
3.自定义属性
属性名 类型 描述 默认值
buttonColor color 按钮主题色 #19CC95
buttonText String 按钮文本 null
buttonTextSize dimension 按钮文本大小 15sp
succeedColor color submit成功按钮主题色 #19CC95
failedColor color submit失败按钮主题色 #FC8E34
progressStyle enum 设置进度样式(可选:loading 或 progress) loading
4.接口方法
 /**
 * 传入submit结果以呈现不同结果反馈效果
 *
 * @param boolean isSucceed 
 */
mSubmitView.doResult(isSucceed);

 /**
 * 重置SubmitButton 
 */
mSubmitView.reset();

/**
 * 设置进度(该方法仅在progressStyle设置为progress时有效)
 *
 * @param progress 进度值 (0-100)
 */
mSubmitView.setProgress();

/**
 * 设置动画结束回调接口
 *
 * @param listener
 */
mSubmitView.setOnResultEndListener(OnResultEndListener listener)

更新日志

当前版本:1.1.3

  • 完成一些改进

版本:1.1.2

  • 修复由于硬件加速导致的在某些机型上无法绘制动画的问题

版本:1.1.1

  • 增加结果动画结束回调接口

  • 修复问题

版本:1.1.0

  • 新增进度样式设置方法

版本:1.0.1

  • 修复问题

版本:1.0.0

  • 初始构建

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.
## SubmitButton [![Travis](https://img.shields.io/badge/download-1.1.3-brightgreen.svg)](https://bintray.com/unstoppable/maven/submitbutton/1.1.3) README: [English](https://github.com/Someonewow/SubmitButton/blob/master/README.md) | [中文](https://github.com/Someonewow/SubmitButton/blob/master/README-zh.md) >It's a submit button with a fun animation for Android. ## Demo ![submit succeed](https://raw.githubusercontent.com/Someonewow/SubmitButton/master/screens/submitbutton_succeed.gif) ![submit failed](https://raw.githubusercontent.com/Someonewow/SubmitButton/master/screens/submitbutton_failed.gif) ![submit progress](https://raw.githubusercontent.com/Someonewow/SubmitButton/master/screens/submitbutton_progress.gif) ## Getting Started ##### 1.Specify SubmitButton as a dependency in your build.gradle file; dependencies { ''' compile 'com.unstoppable:submitbutton:1.1.3' } ##### 2.Add SubmitButton to the layout file; <com.unstoppable.submitbuttonview.SubmitButton android:id="@+id/submitbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" /> ##### 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) ## Changelog #### Current Version:1.1.3 - **Made some improvements.** #### Version:1.1.2 - **Fix bugs that can not be displayed on some phones because of HardwareAccelerated.** #### Version:1.1.1 - **Add animation end callback interface.** - **Bug fixes.** #### Version:1.1.0 - **Add progress style setting mothod.** #### Version:1.0.1 - **Bug fixes.** #### Version:1.0.0 - **Initial Build.** ## 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.

简介

带有进度动画的 Android 自定义提交按钮 展开 收起
Java
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/mirrors/SubmitButton.git
git@gitee.com:mirrors/SubmitButton.git
mirrors
SubmitButton
SubmitButton
master

搜索帮助