Android中自定义水平进度条样式之黑色虚线
更新时间:2016年03月01日 10:26:17 作者:jerrylsxu
这篇文章主要介绍了Android中自定义水平进度条样式之黑色虚线 的相关资料,需要的朋友可以参考下
以下内容给大家介绍Android中自定义水平进度条样式之黑色虚线,对代码实现方法感兴趣的朋友一起学习吧。
布局layout中使用:
<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:
<?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中自定义水平进度条样式之黑色虚线 的相关知识,希望对大家有所帮助!
相关文章
Android 使用registerReceiver注册BroadcastReceiver案例详解
这篇文章主要介绍了Android 使用registerReceiver注册BroadcastReceiver案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下2021-08-08Android游戏开发之碰撞检测(矩形碰撞、圆形碰撞、像素碰撞)
这篇文章主要介绍了Android游戏开发之碰撞检测,主要内容包含矩形碰撞、圆形碰撞、像素碰撞、多矩形碰撞的代码,感兴趣的小伙伴们可以参考一下2016-07-07Android shape和selector 结合使用实例代码
本篇文章主要介绍了Android shape和selector 的使用,这里提供了shape 和selector 的详细介绍,并附有代码实例,有兴趣的朋友可以参考下2016-07-07Android webview拦截H5的接口请求并返回处理好的数据代码示例
这篇文章主要给大家介绍了关于Android webview拦截H5的接口请求并返回处理好的数据的相关资料,通过WebView的shouldInterceptRequest方法,Android可以拦截并处理WebView中的H5网络请求,需要的朋友可以参考下2024-10-10
最新评论