Awesome
:running:BGAProgressBar-Android:running:
主要功能:
- Android 系统自带的 ProgressBar 的各种样式
- 带百分比数字的水平进度条样式
- 带百分比数字的圆形进度条样式
- 彗星进度条样式
- 波浪进度条样式
常见问题
1.无法显示进度 - 必须设置「style」为「@android:style/Widget.ProgressBar.Horizontal」
style="@android:style/Widget.ProgressBar.Horizontal"
效果图与示例 apk
点击下载 BGAProgressBarDemo.apk 或扫描下面的二维码安装
使用
1.添加 Gradle 依赖
bga-progressbar 后面的「latestVersion」指的是左边这个 Download 徽章后面的「数字」,请自行替换。请不要再来问我「latestVersion」是什么了
dependencies {
implementation 'cn.bingoogolapple:bga-progressbar:latestVersion@aar'
}
2.在布局文件中配置 BGAProgressBar
<cn.bingoogolapple.progressbar.BGAProgressBar
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/gap"
android:padding="15dp"
android:progress="40"
app:bga_pb_isCapRounded="false"
app:bga_pb_isHiddenText="true"
app:bga_pb_mode="horizontal"
app:bga_pb_reachedColor="#FFC73B"
app:bga_pb_reachedHeight="4dp"
app:bga_pb_textColor="#FFC73B"
app:bga_pb_textMargin="8dp"
app:bga_pb_textSize="14sp"
app:bga_pb_unReachedColor="#ECF0F1"
app:bga_pb_unReachedHeight="2dp"/>
自定义属性说明
<declare-styleable name="BGAProgressBar">
<!-- 进度条样式,默认值为 system -->
<attr name="bga_pb_mode" format="enum">
<!-- 系统自带样式 -->
<enum name="system" value="0"/>
<!-- 水平进度条 -->
<enum name="horizontal" value="1"/>
<!-- 圆形进度条 -->
<enum name="circle" value="2"/>
<!-- 彗星进度条 -->
<enum name="comet" value="3"/>
<!-- 水波纹进度条 -->
<enum name="wave" value="4"/>
</attr>
<!-- 文字颜色,默认值为 #70A800 -->
<attr name="bga_pb_textColor" format="reference|color"/>
<!-- 文字大小,默认值为 10sp -->
<attr name="bga_pb_textSize" format="dimension"/>
<!-- 文字和进度条之间的间距,默认值为 4dp -->
<attr name="bga_pb_textMargin" format="dimension"/>
<!-- 已完成进度的颜色,默认值为 #70A800 -->
<attr name="bga_pb_reachedColor" format="reference|color"/>
<!-- 已完成进度的高度,默认值为 2dp -->
<attr name="bga_pb_reachedHeight" format="dimension"/>
<!-- 未完成进度的颜色,默认值为 #CCCCCC -->
<attr name="bga_pb_unReachedColor" format="reference|color"/>
<!-- 未完成进度的高度,默认值为 1dp -->
<attr name="bga_pb_unReachedHeight" format="dimension"/>
<!-- 是否为圆角,默认值为 false -->
<attr name="bga_pb_isCapRounded" format="boolean"/>
<!-- 是否隐藏文字,默认值为 false -->
<attr name="bga_pb_isHiddenText" format="boolean"/>
<!-- 圆形进度条半径,默认值为 16dp -->
<attr name="bga_pb_radius" format="dimension"/>
</declare-styleable>
详细用法请查看 Demo:feet:
作者联系方式
个人主页 | 邮箱 |
---|---|
<a href="https://www.bingoogolapple.cn" target="_blank">bingoogolapple.cn</a> | <a href="mailto:bingoogolapple@gmail.com" target="_blank">bingoogolapple@gmail.com</a> |
个人微信号 | 微信群 | 公众号 |
---|---|---|
<img width="180" alt="个人微信号" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/BGAQrCode.png"> | <img width="180" alt="微信群" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/WeChatGroup1QrCode.jpg"> | <img width="180" alt="公众号" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/GongZhongHao.png"> |
个人 QQ 号 | QQ 群 |
---|---|
<img width="180" alt="个人 QQ 号" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/BGAQQQrCode.jpg"> | <img width="180" alt="QQ 群" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/QQGroup1QrCode.jpg"> |
打赏支持作者
如果您觉得 BGA 系列开源库或工具软件帮您节省了大量的开发时间,可以扫描下方的二维码打赏支持。您的支持将鼓励我继续创作,打赏后还可以加我微信免费开通一年 上帝小助手浏览器扩展/插件开发平台 的会员服务
微信 | 支付宝 | |
---|---|---|
<img width="180" alt="微信" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-wechat.jpg"> | <img width="180" alt="QQ" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-qq.jpg"> | <img width="180" alt="支付宝" src="https://github.com/bingoogolapple/bga-god-assistant-config/raw/main/images/donate-alipay.jpg"> |
作者项目推荐
- 欢迎您使用我开发的第一个独立开发软件产品 上帝小助手浏览器扩展/插件开发平台
License
Copyright 2016 bingoogolapple
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.