`

android 自定义 画板

阅读更多
View
package com.restore;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;

public class myview extends View {

	Path mPath;
	Bitmap mBitmap;
	Canvas mCanvas;
	Paint mPaint;
	int width;
	int height;
	int color;

	float mX = 0.0f;
	float mY = 0.0f;
	private Bitmap cachebBitmap;

	@Override
	public boolean onTouchEvent(MotionEvent event) {
		int act = event.getAction();
		float x = event.getX();
		float y = event.getY();
		switch (act) {
		case MotionEvent.ACTION_DOWN:
			mPath.moveTo(x, y);
			break;
		case MotionEvent.ACTION_MOVE:
			mPath.quadTo(mX, mY, x, y);
			break;
		case MotionEvent.ACTION_UP:
			mCanvas.drawPath(mPath, mPaint);
			mPath.reset();
			break;

		}
		invalidate();
		mX = x;
		mY = y;
		return true;
	}

	@Override
	protected void onDraw(Canvas canvas) {
		// TODO Auto-generated method stub
		super.onDraw(canvas);

		// mcanvas = new Canvas(mBitmap);
		canvas.drawColor(Color.WHITE);
		canvas.drawBitmap(cachebBitmap, 0, 0, null);
		canvas.drawPath(mPath, mPaint);
	}

	public void clear()
	{
		mCanvas.drawColor(Color.WHITE);
		mCanvas.drawBitmap(cachebBitmap, 0, 0, null);
		invalidate();
	}
	public void setColor(int c){
		mPaint.setColor(c);
	}
	public void setBlock(float size)
	{
		mPaint.setStrokeWidth(size);
	}
	public myview(Context context) {
		super(context);

		init();


	}

	public myview(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		init();
	}

	public myview(Context context, AttributeSet attrs) {
		super(context, attrs);
		
init();
	}

	public void init(){
		DisplayMetrics metrics = new DisplayMetrics();
		WindowManager wm = (WindowManager) this.getContext().getSystemService("window");
		wm.getDefaultDisplay().getMetrics(metrics);
		width = metrics.widthPixels;
		height = metrics.heightPixels;

		mPaint = new Paint();
		mPaint.setAntiAlias(true);
		mPaint.setColor(Color.BLUE);
		mPaint.setStyle(Paint.Style.STROKE);
		mPaint.setStrokeWidth(12);
		cachebBitmap = Bitmap.createBitmap(width, height,
				Bitmap.Config.ARGB_8888);

		mCanvas = new Canvas(cachebBitmap);
		mPath = new Path();
	}
}



ACTIVITY
package com.restore;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;

public class TestRestoreActivity extends Activity implements OnClickListener {
	Path mPath;
	Bitmap mBitmap;
	Canvas mCanvas;
	Paint mPaint;
	int width;
	int height;
	myview m;
	Button l1, l2, l3,cred,cbule,cblack;
	Button colorBtn = null;
	Button clearBtn = null;
	Button lineBtn = null;
	LinearLayout linelayout, colorlayout = null;

	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);

		 setContentView(R.layout.main);
		height = getWindowManager().getDefaultDisplay().getHeight();
		width =  getWindowManager().getDefaultDisplay().getWidth();
		 m = (myview) findViewById(R.id.myview);
		 linelayout = (LinearLayout) findViewById(R.id.lineBar);
		 colorlayout = (LinearLayout) findViewById(R.id.colorBar);
		 colorBtn = (Button) findViewById(R.id.color);
		 lineBtn = (Button) findViewById(R.id.line);
		 clearBtn = (Button) findViewById(R.id.clear);
		 cred = (Button) findViewById(R.id.colorred);
		 cbule = (Button) findViewById(R.id.colorblue);
		 cblack = (Button) findViewById(R.id.colorblack);
		 l1 = (Button) findViewById(R.id.l1);
		 l3 = (Button) findViewById(R.id.l3);
		 l2 = (Button) findViewById(R.id.l2);
		
		 colorBtn.setOnClickListener(this);
		 lineBtn.setOnClickListener(this);
		 clearBtn.setOnClickListener(this);
		 l1.setOnClickListener(this);
		 l2.setOnClickListener(this);
		 l3.setOnClickListener(this);
		 cred.setOnClickListener(this);
		 cbule.setOnClickListener(this);
		 cblack.setOnClickListener(this);


	}

	@Override
	public void onClick(View v) {

		if (v == colorBtn) {
			if (!colorlayout.isShown()) {
				if (linelayout.isShown()) {
					linelayout.setVisibility(View.INVISIBLE);
				}
				colorlayout.setVisibility(View.VISIBLE);
			} else {
				colorlayout.setVisibility(View.INVISIBLE);
			}
		} else if (v == lineBtn) {
			if (!linelayout.isShown()) {
				if (colorlayout.isShown()) {
					colorlayout.setVisibility(View.INVISIBLE);
				}
				linelayout.setVisibility(View.VISIBLE);
			} else {
				linelayout.setVisibility(View.INVISIBLE);
			}
		} else if (v == clearBtn) {

			m.clear();
		} else if (v == cbule) {
			m.setColor(Color.BLUE);
			colorlayout.setVisibility(View.INVISIBLE);
		} else if (v == cred) {
			m.setColor(Color.RED);
			colorlayout.setVisibility(View.INVISIBLE);
		} else if (v == cblack) {
			m.setColor(Color.BLACK);
			colorlayout.setVisibility(View.INVISIBLE);
		}
		else if(v == l1)
		{
			m.setBlock(12.0f);
			linelayout.setVisibility(View.INVISIBLE);
		}
		else if(v == l2)
		{
			m.setBlock(24.0f);
			linelayout.setVisibility(View.INVISIBLE);
		}
		else if(v == l3)
		{
			m.setBlock(36.0f);
			linelayout.setVisibility(View.INVISIBLE);
		}

	}

}


mainfest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.restore"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".TestRestoreActivity"
            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>
分享到:
评论

相关推荐

    android自定义画板

    在Android开发中,自定义画板是一个常见的需求,它允许用户进行手势绘制、涂鸦或者进行其他图形操作。本文将深入探讨如何在Android平台上创建一个自定义画板,并实现手势画图涂鸦功能。 首先,我们需要创建一个新的...

    【原创】Android自定义View实现图片显示并能缩放、拖拽、切换

    在Android开发中,自定义View是一项重要的技能,它允许开发者根据特定需求定制用户界面,提供更丰富的交互体验。本文将详细解析如何通过自定义View来实现图片显示,并且支持手势缩放、拖拽以及切换的功能。 首先,...

    android自定义View画板

    以上就是创建Android自定义画板的主要步骤和技术要点。通过实践这些知识点,你可以构建出一个功能丰富的画板应用,让用户体验到自由创作的乐趣。在实际开发过程中,还可以根据需求添加更多功能,如图层管理、撤销/...

    自定义的画板

    在实现自定义画板的过程中,开发者需要考虑以下几个关键点: 1. **自定义View的创建**:首先,需要创建一个新的继承自View或者ViewGroup的类,并重写onDraw()方法,这是自定义绘图的核心。在这个方法里,开发者将...

    自定义的画板canvas

    在IT行业中,自定义画板是许多应用和项目中不可或缺的一部分,特别是在教育、设计和协作领域。本项目是一个基于Canvas的自定义白板demo,它提供了丰富的交互功能,旨在满足用户的基本绘画需求。以下是关于这个自定义...

    android 签名画板 , 可以自定义画笔

    android 签名画板 , 可以自定义画笔 , 类似于银行签名确认,使用简单,可以保存当前画板数据

    Android自定义SurfaceView——实现画板功能

    本示例中的“Android自定义SurfaceView——实现画板功能”旨在教你如何利用`SurfaceView`创建一个可以画画的应用。`SurfaceView`是Android系统提供的一种用于高效显示动态图像的视图组件,它拥有自己的渲染线程,...

    Android 画板(白板)源码 涂鸦 画图 图画

    - 自定义控件:可能包含自定义的`View`或`SurfaceView`来实现画板功能。 7. **状态保存与恢复**: - 为了在用户离开应用后仍能保留画布状态,可以将当前的`Bitmap`和绘图参数序列化存储,重新打开应用时恢复。 8...

    Android 图画板Demo

    总的来说,"Android 图画板Demo"涵盖了Android开发中的触摸事件处理、自定义View、数据结构使用(如栈和队列)、图像操作(如Bitmap和Canvas)以及用户界面设计等多个方面,是学习Android应用开发的一个很好的实践...

    完整的安卓画板源代码 Android小画板

    这款名为“Android小画板”的开源项目,提供了实现画板各种功能的完整源代码,使得开发者能够快速理解和构建自己的画板应用。 首先,让我们探讨一下安卓画板的核心功能和实现原理: 1. **画笔功能**:画板应用的...

    Android自定义万能Canvas画布Demo

    1.在自定义的画布中实现可缩放手势,摇一摇可对控件进行整理排序; 2.画布中可以添加位置设定的控件,控件可以响应点击、长按、拖动事件; 3.控件A长按事件会隐藏画布中的控件除了A之外,显示另一个控件B;当A在在...

    Android 画板view控件

    画板View控件在Android中通常基于`View`或`SurfaceView`进行扩展,通过重写`onDraw()`方法来实现自定义绘图功能。在这个特定的Android签名画板module中,开发者可能已经封装了一些核心功能,如笔触颜色选择、粗细...

    Android自定义SurfaceView实现画板功能

    总结起来,Android自定义SurfaceView实现画板功能主要涉及以下步骤: - 初始化SurfaceView及其关联的Path和Paint对象。 - 实现SurfaceHolder.Callback和Runnable接口,监听Surface状态并进行绘图操作。 - 处理用户...

    Android简易画板源码

    在Android开发中,创建一个简易画板应用是一个常见的练习,它可以帮助开发者深入理解自定义View的概念和绘图机制。这个源码项目就是基于这样的目的,使用了Android的自定义View来构建一个基本的画板功能,让用户可以...

    Android简易画板PaintOnTouchEvent

    在Android开发中,创建一个简易画板(PaintOnTouchEvent)是一项常见的需求,它涉及到自定义View、触摸事件处理以及用户交互的设计。这个项目的核心在于如何有效地处理OnTouchEvent,以实现用户在屏幕上绘制图形的...

    Android炫酷画板.zip

    在Android开发中,自定义画板功能是一种常见的需求,它允许用户进行自由绘画、涂鸦,常用于教育、设计或娱乐应用。"Android炫酷画板.zip"是一个包含实现这一功能示例的压缩包,其核心是通过自定义View来构建一个可...

    自定义view-画板

    在Android开发中,自定义View是一种常见的需求,它允许开发者根据特定需求定制用户界面,提供独特的交互体验。本文将深入探讨“自定义view-画板”这一主题,它是一个用于实现类似“你画我猜”游戏功能的画笔组件。这...

Global site tag (gtag.js) - Google Analytics