Android进度条填充



我想要一个圆形的加载条。我想用一个整数来填充它I try this

 <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:indeterminateDrawable="@xml/progress" >
    </ProgressBar>

progress.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" >
    <size
        android:height="48dip"
        android:width="48dip" />
    <gradient
        android:centerY="0.50"
        android:endColor="#000000"
        android:startColor="#ffffff"
        android:gradientRadius="20"
        android:type="radial"
        android:useLevel="false" />
</shape>

和在我的活动

    protected void onPostExecute(Void result) {
            bar.setProgress(50);
            bar.setMax(100);
            bar.setVisibility(View.VISIBLE);
    }

圆圈保持黑色。如果我将渐变类型设置为扫描,则圆圈的起始颜色为黑色,结束颜色为白色。它不断重复。

但是我希望圆圈被填充一次…开始是黑色,填充为白色;只有一次……

这可能吗?

我想达到这个结果:

http://ultimateprogrammingtutorials.blogspot.be/2013/02/how-to-draw-circular-progress-bar-in.html

这是CircularProgressBar的一个很好的例子,根据您的要求,希望这对您有所帮助

示例:
https://github.com/Todd-Davies/ProgressWheel

在stackoverflow上有很多类似的问题:
  1. 如何制作进度圆
  2. 循环progressbar
  3. 自定义绘制进度条/进度对话框
  4. 如何在Android中制作圆形自定义进度条

相关内容

  • 没有找到相关文章

最新更新