2012年7月11日

第七天android:弹球1

摘要: 第十集:弹球1.画小球,和上集的水波一样 class GameView extends SurfaceView implements Callback, Runnable { private Paint paint = null; private Path path; // 画自定义图形 private SurfaceHolder sh = null; public GameView(Context context) { super(context); paint = new Paint(... 阅读全文

posted @ 2012-07-11 22:46 DON'T PANIC 阅读(519) 评论(0) 推荐(0) 编辑

第二天学英语:django 第二章 get started(1)

摘要: 声明:我学英语用的,文章不适合大家看。Chapter Two :Getting StartedNew to Django? Or to web development in general ? Well,you came to the right place : read this material to quickly get up and running.django新手?或者开发普通web网站,那么,你来对地方了,读这个教材可以快速搭建起来运行。2.1 Django at a glance (初看 django)Because Django was developed in a fast 阅读全文

posted @ 2012-07-11 21:20 DON'T PANIC 阅读(400) 评论(0) 推荐(0) 编辑

第六天android:手写笔和水波纹

摘要: 视频:善知堂Android http://www.verycd.com/topics/2915940/第九集:手写笔,水波纹效果。1.实现画笔功能主要是在drawView 方法里面, 然后利用线程画图,surfaceView来定时绘制。 class GameView extends SurfaceView implements Callback, Runnable { private Paint paint = null; private Path path = null; // 画自定义图形 private SurfaceHolder sh =... 阅读全文

posted @ 2012-07-11 08:24 DON'T PANIC 阅读(934) 评论(0) 推荐(0) 编辑

导航