关闭 x
IT技术网
    技 采 号
    ITJS.cn - 技术改变世界
    • 实用工具
    • 菜鸟教程
    IT采购网 中国存储网 科技号 CIO智库

    IT技术网

    IT采购网
    • 首页
    • 行业资讯
    • 系统运维
      • 操作系统
        • Windows
        • Linux
        • Mac OS
      • 数据库
        • MySQL
        • Oracle
        • SQL Server
      • 网站建设
    • 人工智能
    • 半导体芯片
    • 笔记本电脑
    • 智能手机
    • 智能汽车
    • 编程语言
    IT技术网 - ITJS.CN
    首页 » 安卓开发 »Android 利用 Canvas 画画板

    Android 利用 Canvas 画画板

    2015-07-14 00:00:00 出处:阳阳的博客
    分享

    首先新建一个项目工程,建立文件,如下图所示

    首先配置页面布局文件activity_main.xml,如下图所示:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
    
        <ImageView
            android:id="@+id/iv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bg"
             />
        <TextView 
              android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="画笔的粗细"
            />
        <SeekBar 
             android:id="@+id/sb"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:max="256"
            />
        <TextView 
              android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="颜色"
            />
        <Spinner 
            android:id="@+id/sp"
             android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:entries="@array/color"
            />
        <Button 
                android:id="@+id/btn"
              android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="保存"
            />
    
    </LinearLayout>

    然后书写主页的代码MainActivity.java代码如下

    package com.xunfang.drawing;
    
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    
    import android.app.Activity;
    import android.content.Intent;
    import android.graphics.Bitmap;
    import android.graphics.Bitmap.CompressFormat;
    import android.graphics.BitmapFactory;
    import android.graphics.Canvas;
    import android.graphics.Color;
    import android.graphics.Matrix;
    import android.graphics.Paint;
    import android.net.Uri;
    import android.os.Bundle;
    import android.os.Environment;
    import android.util.MonthDisplayHelper;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.view.MotionEvent;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.view.View.OnTouchListener;
    import android.widget.AdapterView;
    import android.widget.AdapterView.OnItemClickListener;
    import android.widget.AdapterView.OnItemSelectedListener;
    import android.widget.Button;
    import android.widget.ImageView;
    import android.widget.SeekBar;
    import android.widget.Spinner;
    import android.widget.Toast;
    
    public class MainActivity extends Activity {
        private SeekBar sb;
        private ImageView iv;
        private Button btn;
        private Spinner sp;
        private String[] color ;
    
        private Bitmap bm;
        private Bitmap copy;
        private  Canvas canvas;
        private Paint paint;
        private File file;
        private int yanse;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
           //拿到在xml文件中定义的颜色数组
            color = getResources().getStringArray(R.array.color) ;
            //实例化
            initData();
            //设置监听器
            setLister();
            //画画
            loadingImage();
    
        }
        private void loadingImage() {
            // 加载原始图片
            bm = BitmapFactory.decodeResource(getResources(), R.drawable.bg);
            // 需要创建一个和原始的图片大小一样的空白图片(一张纸,上面没有任何数据)
            copy = bm.createBitmap(bm.getWidth(), bm.getHeight(), bm.getConfig());
            // 需要一个画板,画板上铺上白纸
            canvas= new Canvas(copy);
            // 创建画笔
            paint= new Paint();
    
            // 给imageView空间加载一个滑动监听器
            iv.setOnTouchListener(new OnTouchListener() {
                int startx;
                int starty;
                @Override
                public boolean onTouch(View v, MotionEvent event) {
                    // 拿到动作
                    int type = event.getAction();
                    switch (type) {
                    case MotionEvent.ACTION_DOWN:
                        startx = (int) event.getX();
                        starty = (int) event.getY();
                        break;
                    case MotionEvent.ACTION_MOVE:
                        int endx = (int) event.getX();
                        int endy = (int) event.getY();
                        //画画
                        canvas.drawLine(startx, starty, endx, endy, paint);
                        startx = (int) event.getX();
                        starty = (int) event.getY();
                        iv.setImageBitmap(copy);
                        break;
                    case MotionEvent.ACTION_UP:
    
                        break;
                    }
                    return true;
                }
            });
    
        }
        private void setLister() {
            //下拉框
            sp.setOnItemSelectedListener(new OnItemSelectedListener() {
                @Override
                public void onItemSelected(AdapterView< > parent, View view,
                        int position, long id) {
                    Toast.makeText(getApplicationContext(), "你点击的是:" +  color[position], 0).show();                
                    switch (position) {
                    case 1:
                        paint.setColor(Color.GREEN);
                        break;
                    case 2:
                        paint.setColor(Color.BLUE);
                        break;
                    case 3:
                        paint.setColor(Color.BLACK);
                        break;
                    case 4:
                        paint.setColor(Color.YELLOW);
                        break;
                    case 0:
                        paint.setColor(Color.RED);
                        break;
                    }
                }
                @Override
                public void onNothingSelected(AdapterView< > parent) {
                }
            });
            //保存
            btn.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    try {
                        //指定图片的存储路径
                        file = new File(Environment.getExternalStorageDirectory().getAbsoluteFile()+"/draw.png");
                        FileOutputStream fos = new FileOutputStream(file);
                        copy.compress(CompressFormat.PNG, 100, fos);
                        Toast.makeText(getApplicationContext(), "保存成功", 0).show() ;
                    } catch (Exception e) {
                    }
                    //欺骗系统,告诉系统插入一个sd卡
                    Intent intent = new Intent();
                    intent.setAction(intent.ACTION_MEDIA_MOUNTED);
                    intent.setData(Uri.fromFile(file));
                    sendBroadcast(intent);
                }
            });
        }
        private void initData() {
                sb = (SeekBar) findViewById(R.id.sb);
                btn = (Button) findViewById(R.id.btn);
                sp = (Spinner) findViewById(R.id.sp);
                iv = (ImageView) findViewById(R.id.iv);
        }
    
    }

    AndroidManifest.xml配置文件如下:

    < xml version="1.0" encoding="utf-8" >
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.xunfang.drawing"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk
            android:minSdkVersion="16"
            android:targetSdkVersion="21" />
    
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>
    
    </manifest>

    然后用虚拟机测试如下所示:

    可以在模拟器看一下,生成的文件

    表示验证成功了

    上一篇返回首页 下一篇

    声明: 此文观点不代表本站立场;转载务必保留本文链接;版权疑问请联系我们。

    别人在看

    Destoon 模板存放规则及语法参考

    Destoon系统常量与变量

    Destoon系统目录文件结构说明

    Destoon 系统安装指南

    Destoon会员公司主页模板风格添加方法

    Destoon 二次开发入门

    Microsoft 将于 2026 年 10 月终止对 Windows 11 SE 的支持

    Windows 11 存储感知如何设置?了解Windows 11 存储感知开启的好处

    Windows 11 24H2 更新灾难:系统升级了,SSD固态盘不见了...

    小米路由器买哪款?Miwifi热门路由器型号对比分析

    IT头条

    Synology 对 Office 套件进行重大 AI 更新,增强私有云的生产力和安全性

    01:43

    StorONE 的高效平台将 Storage Guardian 数据中心占用空间减少 80%

    11:03

    年赚千亿的印度能源巨头Nayara 云服务瘫痪,被微软卡了一下脖子

    12:54

    国产6nm GPU新突破!砺算科技官宣:自研TrueGPU架构7月26日发布

    01:57

    公安部:我国在售汽车搭载的“智驾”系统都不具备“自动驾驶”功能

    02:03

    技术热点

    最全面的前端开发指南

    Windows7任务栏桌面下角的一些正在运行的图标不见了

    sql server快速删除记录方法

    SQL Server 7移动数据的6种方法

    SQL Server 2008的新压缩特性

    每个Java程序员必须知道的5个JVM命令行标志

      友情链接:
    • IT采购网
    • 科技号
    • 中国存储网
    • 存储网
    • 半导体联盟
    • 医疗软件网
    • 软件中国
    • ITbrand
    • 采购中国
    • CIO智库
    • 考研题库
    • 法务网
    • AI工具网
    • 电子芯片网
    • 安全库
    • 隐私保护
    • 版权申明
    • 联系我们
    IT技术网 版权所有 © 2020-2025,京ICP备14047533号-20,Power by OK设计网

    在上方输入关键词后,回车键 开始搜索。Esc键 取消该搜索窗口。