带有进度动画的Android自定义提交按钮.
dependencies {
'''
compile 'com.unstoppable:submitbutton:1.1.3'
}
<com.unstoppable.submitbuttonview.SubmitButton
android:id="@+id/submitbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
属性名 | 类型 | 描述 | 默认值 |
---|---|---|---|
buttonColor | color | 按钮主题色 | #19CC95 |
buttonText | String | 按钮文本 | null |
buttonTextSize | dimension | 按钮文本大小 | 15sp |
succeedColor | color | submit成功按钮主题色 | #19CC95 |
failedColor | color | submit失败按钮主题色 | #FC8E34 |
progressStyle | enum | 设置进度样式(可选:loading 或 progress) | loading |
/**
* 传入submit结果以呈现不同结果反馈效果
*
* @param boolean isSucceed
*/
mSubmitView.doResult(isSucceed);
/**
* 重置SubmitButton
*/
mSubmitView.reset();
/**
* 设置进度(该方法仅在progressStyle设置为progress时有效)
*
* @param progress 进度值 (0-100)
*/
mSubmitView.setProgress();
/**
* 设置动画结束回调接口
*
* @param listener
*/
mSubmitView.setOnResultEndListener(OnResultEndListener listener)
- 完成一些改进
- 修复由于硬件加速导致的在某些机型上无法绘制动画的问题
-
增加结果动画结束回调接口
-
修复问题
- 新增进度样式设置方法
- 修复问题
- 初始构建
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.