android开发_小画笔程序.doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
android开发_小画笔程序

一、概述 ? ? ? 这次要做一个简单的涂鸦板应用,以前在Qt上实现过,突然想到要把它在Android上实现,呵呵,既简单又有趣。 二、实现 ? ? ?新建工程MyWall,修改/res/layout/main.xml文件,在里面添加一个SurfaceView和两个Button,用到了RelativeLayout布局,完整的main.xml文件如下: 1 ?xml version=1.0 encoding=utf-8? 2 3 RelativeLayout xmlns:android=/apk/res/android 4 android:layout_width=fill_parent 5 android:layout_height=fill_parent 6 android:orientation=vertical 7 8 9 SurfaceView 10 android:id=@+id/surfaceview 11 android:layout_width=fill_parent 12 android:layout_height=wrap_content 13 android:layout_above=@+id/line 14 android:layout_alignParentTop=true 15 / 16 17 LinearLayout 18 android:id=@+id/line 19 android:layout_width=fill_parent 20 android:layout_height=wrap_content 21 android:layout_alignParentBottom=true 22 23 24 Button 25 android:id=@+id/flushbutton 26 android:layout_width=fill_parent 27 android:layout_height=wrap_content 28 android:layout_weight=1 29 android:text=清屏 30 / 31 32 Button 33 android:id=@+id/colorbutton 34 android:layout_width=fill_parent 35 android:layout_height=wrap_content 36 android:layout_weight=1 37 android:text=颜色 38 / 39 /LinearLayout 40 /RelativeLayout 接着,修改MyWallActivity.java文件,最主要是覆写了onTouchEvent()函数,在这个函数里过滤出触屏拖动事件,然后获取其相应的坐标和画线,关于SurfaceView的用法在基础篇里有讲到。完整的内容如下: ? 1 package com.nan.wall; 2 3 import android.app.Activity; 4 import android.app.AlertDialog; 5 import android.app.Dialog; 6 import android.content.DialogInterface; 7 import android.graphics.Canvas; 8 import android.graphics.Color; 9 import android.graphics.Paint; 10 import android.graphics.Rect; 11 import android.os.Bundle; 12 import android.view.MotionEvent; 13 import android.view.SurfaceHolder; 14 import android.view.SurfaceVie

文档评论(0)

xcs88858 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档