gpt4 book ai didi

java - 带有 2 种纯色的进度条

转载 作者:搜寻专家 更新时间:2023-11-01 08:26:31 28 4
gpt4 key购买 nike

我想创建一个带有 2 种纯色可绘制对象的圆形进度条。目前我有一个像这样的渐变进度条。

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

<shape
android:shape="ring"
android:useLevel="false" >
<gradient
android:centerY="1"
android:startColor="#0099CC"
android:type="sweep"
android:useLevel="false" />
</shape>
</rotate>

我怎样才能做到这一点?

最佳答案

我们可以使用这个 xml:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- Background -->
<item
android:id="@android:id/background"
android:drawable="@drawable/progress_bar_off"/>

<!-- Secondary progress - this is optional -->
<item android:id="@android:id/secondaryProgress">
<clip android:drawable="@drawable/progress_bar_secondary" />
</item>

<!-- Progress -->
<item android:id="@android:id/progress">
<clip android:drawable="@drawable/progress_bar_on" />
</item>

</layer-list>

关于java - 带有 2 种纯色的进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44491060/

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