91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

環形ProgressBar的旋轉動畫效果

發布時間:2024-08-16 16:11:29 來源:億速云 閱讀:91 作者:小樊 欄目:移動開發

要實現環形ProgressBar的旋轉動畫效果,可以通過自定義View來繪制環形ProgressBar,并使用屬性動畫來實現旋轉效果。

首先,創建一個繼承自View的自定義View類,重寫onDraw方法來繪制環形ProgressBar:

public class CircularProgressView extends View {

    private Paint paint;
    private RectF rect;
    private int progress = 0;

    public CircularProgressView(Context context) {
        super(context);
        init();
    }

    public CircularProgressView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public CircularProgressView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        paint = new Paint();
        paint.setColor(Color.BLUE);
        paint.setStrokeWidth(20);
        paint.setStyle(Paint.Style.STROKE);
        paint.setAntiAlias(true);

        rect = new RectF();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        int centerX = getWidth() / 2;
        int centerY = getHeight() / 2;
        int radius = Math.min(centerX, centerY) - 10;

        rect.set(centerX - radius, centerY - radius, centerX + radius, centerY + radius);

        float angle = 360 * progress / 100;

        canvas.drawArc(rect, -90, angle, false, paint);
    }

    public void setProgress(int progress) {
        this.progress = progress;
        invalidate();
    }
}

然后,在Activity或Fragment中使用屬性動畫來實現旋轉效果:

ObjectAnimator animator = ObjectAnimator.ofInt(circularProgressView, "progress", 0, 100);
animator.setDuration(2000);
animator.setInterpolator(new LinearInterpolator());
animator.setRepeatCount(ObjectAnimator.INFINITE);
animator.setRepeatMode(ObjectAnimator.RESTART);
animator.start();

這樣就可以實現環形ProgressBar的旋轉動畫效果了。可以根據具體需求調整旋轉的速度、方向和顏色等屬性。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平昌县| 巧家县| 金华市| 古田县| 克什克腾旗| 长武县| 彰化市| 泽库县| 合阳县| 奉贤区| 韩城市| 许昌市| 宿松县| 甘洛县| 当涂县| 常德市| 曲靖市| 双鸭山市| 崇左市| 元阳县| 哈密市| 博客| 广灵县| 永年县| 滦平县| 英吉沙县| 措美县| 武陟县| 衡东县| 通榆县| 于都县| 运城市| 贡嘎县| 新郑市| 仲巴县| 舞阳县| 称多县| 绥中县| 湖北省| 洛浦县| 博客|