服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android中自定义水平进度条样式之黑色虚线

Android中自定义水平进度条样式之黑色虚线

2021-06-21 17:51jerrylsxu Android

这篇文章主要介绍了Android中自定义水平进度条样式之黑色虚线 的相关资料,需要的朋友可以参考下

以下内容给大家介绍android中自定义水平进度条样式之黑色虚线,对代码实现方法感兴趣的朋友一起学习吧。

布局layout中使用:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
<progressbar
android:id="@+id/progress_bar"
style="?android:attr/progressbarstylehorizontal" <!--必须设置为水平-->
android:progressdrawable="@drawable/myprogress" <!--此处用自定义样式-->
android:layout_width="dp"
android:layout_height="dp"
android:layout_margintop="dp"
android:maxheight="dp"
android:minheight="dp"
android:max=""
android:secondaryprogress=""
android:progress=""
android:indeterminateonly="false" />

下面为xml源代码myprogress.xml:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="." encoding="utf-"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!--item background与progress 顺序不可颠倒 -->
<item android:id="@android:id/background" >
<shape android:shape="line">
<stroke
android:width="dp" android:color="#" <!--背景颜色和宽度-->
android:dashwidth="dp" android:dashgap="dp" /> <!--虚线间隔dp-->
</shape>
</item>
<item android:id="@android:id/progress" >
<clip>
<shape android:shape="line">
<stroke
android:width="dp" android:color="#"
android:dashwidth="dp" android:dashgap="dp" />
</shape>
</clip>
</item>
</layer-list>

以上所述是本文给大家分享的android中自定义水平进度条样式之黑色虚线 的相关知识,希望对大家有所帮助!

延伸 · 阅读

精彩推荐