Android中使用Canvas和Paint繪製一個安卓機器人

場景

在Android中畫筆使用Paint類,畫布使用Canvas類來表示。android

繪圖的基本步驟編程

首先編寫一個繼承自View的自定義View類,而後重寫其onDraw方法,最後把自定義的view添加到actvity中。canvas

效果

 

 

注:app

博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。ide

實現

首先在要顯示的Activity的佈局文件中修改成FrameLayout並添加一個id。 佈局

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/frameLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".RobitActivity">

</FrameLayout>

而後在ACtivity中新建自定義View類,這裏是MyView使其繼承View類並編寫一個帶一個參數的構造方法和重寫onDraw方法。this

在重寫的onDraw方法中新建畫筆並設置一些屬性,而後使用畫筆在畫布上指定的位置繪製圖形。spa

package com.badao.alarmmanager;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.os.Bundle;
import android.view.View;
import android.widget.FrameLayout;

public class RobitActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_robit);
        FrameLayout frameLayout= (FrameLayout) findViewById(R.id.frameLayout);  //獲取幀佈局管理器
        frameLayout.addView(new MyView(this));  //將自定義視圖的內部類添加到佈局管理器中
    }

    private class MyView extends View {
        public MyView(Context context) {
            super(context);
        }

        @Override
        protected void onDraw(Canvas canvas) {
            super.onDraw(canvas);
            Paint paint=new Paint(); //默認設置建立一個畫筆
            paint.setAntiAlias(true); //使用抗鋸齒功能
            paint.setColor(0xFFA4C739); //設置畫筆的顏色爲綠色
            //繪製機器人的頭
            RectF rectf_head=new RectF(10, 10, 100, 100);
            rectf_head.offset(90, 20);
            canvas.drawArc(rectf_head, -10, -160, false, paint); //繪製弧
            //繪製眼睛
            paint.setColor(Color.WHITE); //設置畫筆的顏色爲白色
            canvas.drawCircle(125, 53, 4, paint); //繪製圓
            canvas.drawCircle(165, 53, 4, paint); //繪製圓
            paint.setColor(0xFFA4C739); //設置畫筆的顏色爲綠色
            //繪製天線
            paint.setStrokeWidth(2); //設置筆觸的寬度
            canvas.drawLine(110, 15, 125, 35, paint); //繪製線
            canvas.drawLine(180, 15, 165, 35, paint); //繪製線
            //繪製身體
            canvas.drawRect(100, 75, 190, 150, paint); //繪製矩形
            RectF rectf_body=new RectF(100,140,190,160);
            canvas.drawRoundRect(rectf_body, 10, 10, paint); //繪製圓角矩形
            //繪製胳膊
            RectF rectf_arm=new RectF(75,75,95,140);
            canvas.drawRoundRect(rectf_arm, 10, 10, paint); //繪製左側的胳膊
            rectf_arm.offset(120, 0);       //設置在X軸上偏移120像素
            canvas.drawRoundRect(rectf_arm, 10, 10, paint); //繪製右側的胳膊
            //繪製腿
            RectF rectf_leg=new RectF(115,150,135,200);
            canvas.drawRoundRect(rectf_leg, 10, 10, paint); //繪製左側的腿
            rectf_leg.offset(40, 0);       //設置在X軸上偏移40像素
            canvas.drawRoundRect(rectf_leg, 10, 10, paint); //繪製右側的腿
        }
    }
}
相關文章
相關標籤/搜索