Android中自定義ProgressBar

<ProgressBar
            android:id="@+id/more_vprogress_more"
            android:layout_width="30dip"
            android:layout_height="30dip"
            android:layout_centerVertical="true"
            android:indeterminateDrawable="@drawable/progress_selector"//這個屬性用來設置progressBar的樣式
            android:visibility="gone"

            /> android

在Drawable目錄下建立這樣一個xml文件: spa

  

<?xml version="1.0" encoding="UTF-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" 
android:pivotY="50%"
android:fromDegrees="0"
android:toDegrees="360">
<shape
android:shape="ring"
android:innerRadiusRatio="3"
android:thicknessRatio="8"
android:useLevel="false">
<gradient 
android:type="sweep"
android:useLevel="false"
android:startColor="#871318"    //經過更改這三個值,可讓progressBar,顯示不一樣的效果
android:centerColor="#D5202A"
android:centerY="0.50"
android:endColor="#FFEEEE"/>
</shape>


</rotate> xml

相關文章
相關標籤/搜索