ProgressBar样式

来源:互联网 发布:网络用语我有毒的意思 编辑:程序博客网 时间:2024/06/08 11:00
在xml文件中,设置大小:

style="?android:attr/progressBarStyleLarge"

style="?android:attr/progressBarStyleSmall"

设置样式:progress_bar_style.xml

<?xml version="1.0" encoding="utf-8"?><rotate    xmlns:android="http://schemas.android.com/apk/res/android"    android:fromDegrees="0"    android:pivotX="50%"    android:pivotY="50%"    android:toDegrees="360">    <shape        android:innerRadiusRatio="3"        android:shape="ring"        android:thicknessRatio="8"        android:useLevel="false">        <gradient            android:centerColor="#FFFFFF"            android:centerY="0.50"            android:endColor="#8fc362"            android:startColor="#000000"            android:type="sweep"            android:useLevel="false" />    </shape></rotate>  

在xml文件中使用:

android:indeterminateDrawable="@drawable/progress_bar_style"

 

0 0
原创粉丝点击