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

溫馨提示×

android drawarc 怎么設置透明度

小樊
81
2024-11-24 01:18:39
欄目: 編程語言

在Android中,要設置Arc繪制時的透明度,您需要使用Paint類的setAlpha()方法。以下是一個簡單的示例,展示了如何在自定義View中使用ArcDrawable并設置透明度:

首先,創建一個自定義View類:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.support.annotation.Nullable;
import android.support.v7.widget.AppCompatView;
import android.util.AttributeSet;

public class CustomArcView extends AppCompatView {

    private Paint mPaint;
    private RectF mRectF;

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

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

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

    private void init() {
        mPaint = new Paint();
        mPaint.setAntiAlias(true);
        mPaint.setStrokeWidth(10);
        mPaint.setStyle(Paint.Style.STROKE);
        mRectF = new RectF();
    }

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

        // 設置透明度,范圍為0-255,0表示完全透明,255表示完全不透明
        mPaint.setAlpha(128);

        // 設置Arc的顏色
        mPaint.setColor(0xFF00FF00); // 綠色

        // 設置Arc的起始角度和掃過的角度
        int startAngle = 0;
        int sweepAngle = 360;

        // 設置Arc的邊界
        mRectF.set(50, 50, 250, 250);

        // 繪制Arc
        canvas.drawArc(mRectF, startAngle, sweepAngle, true, mPaint);
    }
}

在這個示例中,我們創建了一個名為CustomArcView的自定義View類。在onDraw()方法中,我們使用setAlpha()方法設置了Paint對象的透明度。我們還設置了Arc的顏色、起始角度、掃過的角度和邊界。最后,我們使用canvas.drawArc()方法繪制了Arc。

0
滨州市| 元氏县| 崇明县| 阳高县| 沧州市| 玛沁县| 霍城县| 江口县| 雅安市| 宁阳县| 卓资县| 蕉岭县| 河曲县| 贵阳市| 珲春市| 兴安盟| 伊川县| 潼南县| 革吉县| 海盐县| 修武县| 合作市| 本溪| 平陆县| 大冶市| 会东县| 华坪县| 神木县| 广河县| 红原县| 贺州市| 栖霞市| 西丰县| 阜平县| 伽师县| 敦煌市| 竹山县| 曲阳县| 资阳市| 汾阳市| 漾濞|