Android的进度条填充

Android的进度条填充

本文介绍了Android的进度条填充的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在一个圆圈形状的加载条。我想用一个整数我想这来填补它。

I want a loading bar in a circle shape. I want to fill it with an integer i tried 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:

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);
    }

该圈保持黑色。如果我设置渐变式扫,圆​​与startcolor黑色和白色ENDCOLOR填充..它不断地重复。

The Circle stays black. If i set the gradient type to sweep, the circle fills with startcolor black and endcolor white.. and it constantly repeats.

但我想圈进行一次充满..所以它开始的黑色和白色的填充;只有1次。

But I want the circle to be filled once.. so it starts black and fills white; only 1 time..

这可能吗?

我想达到这样的结果:

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

推荐答案

一个好例如CircularProgressBar的,根据您的要求希望这可以帮助你。

here is one good example of CircularProgressBar, As per your requirement Hope this helps you

这篇关于Android的进度条填充的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 23:37