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:
<?xmlversion="."encoding="utf-"?> <layer-listxmlns:android="http://schemas.android.com/apk/res/android"> <!--itembackground与progress顺序不可颠倒--> <itemandroid:id="@android:id/background"> <shapeandroid:shape="line"> <stroke android:width="dp"android:color="#"<!--背景颜色和宽度--> android:dashWidth="dp"android:dashGap="dp"/><!--虚线间隔dp--> </shape> </item> <itemandroid:id="@android:id/progress"> <clip> <shapeandroid:shape="line"> <stroke android:width="dp"android:color="#" android:dashWidth="dp"android:dashGap="dp"/> </shape> </clip> </item> </layer-list>
以上所述是本文给大家分享的Android中自定义水平进度条样式之黑色虚线的相关知识,希望对大家有所帮助!