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

溫馨提示×

溫馨提示×

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

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

Android怎么自定義View實現風車效果

發布時間:2022-08-17 16:25:45 來源:億速云 閱讀:157 作者:iii 欄目:開發技術

本篇內容介紹了“Android怎么自定義View實現風車效果”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

效果圖:

Android怎么自定義View實現風車效果

畫桿

public class WindmillRodView extends View {

    private int mWidth;
    private int mHeight;
    private Paint mPaint;

    public WindmillRodView(Context context) {
        this(context, null);
    }

    public WindmillRodView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public WindmillRodView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        mPaint = new Paint();
        mPaint.setColor(Color.WHITE);
        mPaint.setStyle(Paint.Style.FILL);
        mPaint.setAntiAlias(true);
        mPaint.setDither(true);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        mWidth = getMeasuredWidth();
        mHeight = getMeasuredHeight();
    }

    private int _rod_width = dp2px(2);

    @Override
    protected void onDraw(Canvas canvas) {
        int xCenter = mWidth / 2;
        int yCenter = mHeight / 3;
        int radius = mHeight / 3 * 2;
        drawRod(canvas, xCenter, yCenter, radius);
    }

    private void drawRod(Canvas canvas, int xCenter, int yCenter, int radius) {
        Path path = new Path();
        path.moveTo(xCenter - _rod_width, yCenter);
        path.lineTo(xCenter - 2 * _rod_width, radius - dp2px(5));
        path.lineTo((xCenter + 2 * _rod_width), radius - dp2px(5));
        path.lineTo(xCenter + _rod_width, yCenter);
        path.close();
        canvas.drawPath(path, mPaint);
        RectF rectF = new RectF(xCenter - 2 * _rod_width,
                radius - dp2px(8),
                xCenter + 2 * _rod_width,
                radius - dp2px(3));
        canvas.drawOval(rectF, mPaint);
    }

    private int dp2px(int dp) {
        return (int) (Resources.getSystem().getDisplayMetrics().density * dp + 0.5);
    }
}

先畫風車的桿,再在底部畫一個橢圓

畫風車

public class WindmillView extends View {

    private int mWidth;
    private int mHeight;
    private Paint mPaint;

    private ObjectAnimator mRotationAnim;

    public WindmillView(Context context) {
        this(context, null);
    }

    public WindmillView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public WindmillView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        mPaint = new Paint();
        mPaint.setColor(Color.WHITE);
        mPaint.setStyle(Paint.Style.FILL);
        mPaint.setAntiAlias(true);
        mPaint.setDither(true);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        mWidth = getMeasuredWidth();
        mHeight = getMeasuredHeight();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        int xCenter = mWidth / 2;
        int yCenter = mHeight / 3;
        int radius = mHeight / 3 * 2;
        canvas.drawCircle(xCenter, yCenter - dp2px(7), dp2px(4), mPaint);
        setPivotX(xCenter);
        setPivotY(yCenter - dp2px(7));
        canvas.save();
        for (int i = 0; i < 3; i++) {
            Path path = new Path();
            path.moveTo(xCenter, 0);
            path.lineTo(xCenter, yCenter - dp2px(11));
            path.lineTo(xCenter + dp2px(8), yCenter - dp2px(26));
            path.close();
//        mPaint.setStrokeJoin(Paint.Join.ROUND);
            CornerPathEffect cornerPathEffect = new CornerPathEffect(30);
            mPaint.setPathEffect(cornerPathEffect);
            canvas.drawPath(path, mPaint);
            canvas.rotate(360 / 3, xCenter, yCenter - dp2px(7));
        }
        canvas.restore();
        startAnim();
    }

    private int dp2px(int dp) {
        return (int) (Resources.getSystem().getDisplayMetrics().density * dp + 0.5);
    }

    public void startAnim() {
        if (mRotationAnim != null && mRotationAnim.isRunning()) return;
        mRotationAnim = ObjectAnimator.ofFloat(this, "Rotation", 360f)
                .setDuration(3000);
        mRotationAnim.setRepeatCount(-1);
        mRotationAnim.setInterpolator(new LinearInterpolator());
        mRotationAnim.start();
    }

    public void stopAnim() {
        if (mRotationAnim != null && mRotationAnim.isRunning()) {
            mRotationAnim.cancel();
            mRotationAnim = null;
        }
    }
}

這里使用畫面的旋轉方法,繪制扇頁

旋轉

使用屬性動畫來旋轉

....
 public void startAnim() {
        if (mRotationAnim != null && mRotationAnim.isRunning()) return;
        mRotationAnim = ObjectAnimator.ofFloat(this, "Rotation", 360f)
                .setDuration(3000);
        mRotationAnim.setRepeatCount(-1);
        mRotationAnim.setInterpolator(new LinearInterpolator());
        mRotationAnim.start();
    }

    public void stopAnim() {
        if (mRotationAnim != null && mRotationAnim.isRunning()) {
            mRotationAnim.cancel();
            mRotationAnim = null;
        }
    }
 ....

在布局文件中使用

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000">

    <com.example.windmill.WindmillRodView
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_centerInParent="true" />

    <com.example.windmill.WindmillView
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_centerInParent="true" />

</RelativeLayout>

這里只是介紹了如何繪制類似的效果,很多計算都是寫死的,如果要實際使用的話,最好寫成自定義屬性通過xml屬性聲明傳進去。

“Android怎么自定義View實現風車效果”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

晋江市| 清徐县| 汉源县| 莱芜市| 武强县| 郸城县| 牡丹江市| 博兴县| 镇江市| 平湖市| 介休市| 通化市| 晋宁县| 北宁市| 长武县| 浮梁县| 遵化市| 施秉县| 舒城县| 岑巩县| 观塘区| 林口县| 台山市| 岗巴县| 海原县| 伊金霍洛旗| 胶南市| 盐亭县| 息烽县| 礼泉县| 和平县| 桂平市| 原阳县| 浠水县| 灵璧县| 方城县| 平潭县| 泽库县| 临颍县| 正定县| 简阳市|