gpt4 book ai didi

java - Android:如何更改圆形进度条上的自定义颜色

转载 作者:行者123 更新时间:2023-11-30 01:24:16 25 4
gpt4 key购买 nike

我不知道如何更改我的圆形进度条的默认颜色。我已经尝试在下面的 xml 文件标题 circular_progress_view.xml 中更改我的渐变标签下的 startColor 和 endcolor 属性,这是一种荧光绿色,但洋红色的默认颜色仍然显示。请在下面查看我的布局 xml 文件 (main.xml) 和 circular_progress_view.xml 文件

主.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>

最佳答案

我是这样做的,效果很好

<?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="1080" >

<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="12"
android:useLevel="false" >

<size
android:height="76dp"
android:width="76dp" />

<gradient
android:angle="0"
android:endColor="@color/progress_bar_color"
android:startColor="@android:color/transparent"
android:type="sweep"
android:useLevel="false" />

</shape>
</rotate>

并将其添加到 res/values/colors.xml

<color name="progress_bar_color">#00ff00</color>

然后我像这样添加 ProgressBar(注意 android:indeterminateDrawable):

<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:indeterminate="true"
android:indeterminateDrawable="@drawable/progress_bar"
style="?android:attr/progressBarStyleLargeInverse" />

关于java - Android:如何更改圆形进度条上的自定义颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36651460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com