1
我無法弄清楚如何更改我的圓形進度欄的默認顏色。我嘗試在下面的XML文件標題circular_progress_view.xml中更改我的漸變標記下的startColor和endcolor屬性,這是一個熒光綠色,但洋紅色的默認顏色仍顯示出來。請參閱我的兩個佈局的XML文件(main.xml中)和circular_progress_view.xml文件下Android:如何更改圓形進度條上的自定義顏色
main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants">
<LinearLayout
android:id="@+id/linlaHeaderProgress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone" >
<ProgressBar
android:indeterminate="true"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBar"
android:progressDrawable="@drawable/circular_progress_view">
</ProgressBar>
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listview"
android:layout_weight="1">
</ListView>
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Submit"/>
</LinearLayout>
circular_progress_view.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="90"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360">
<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="7.0">
<gradient
android:angle="0"
android:type="sweep"
android:useLevel="false"
android:startColor="#00FF00"
android:endColor="#00FF00"/>
</shape>
</rotate>