2012年7月5日

android第四天晚:绘图和handle

摘要: 视频:善知堂Android http://www.verycd.com/topics/2915940/今天又加班两个多小时。第五集(下)动态效果1.查看日志的过滤,这里过滤出来System.out 的输出日志2.添加监听事件。谁处于激活状态就有限获得这个事件,事件会向上传递。举个例子class GameView extends View { public GameView(Context context) { super(context); } // 键盘按下 @Override public bool... 阅读全文

posted @ 2012-07-05 23:16 DON'T PANIC 阅读(421) 评论(0) 推荐(0)

android第四天早:多线程基础

摘要: 视频:善知堂Android http://www.verycd.com/topics/2915940/第四集:多线程讲多线程的技术点第五集(上):动态效果class GameView extends View { private Paint paint = null; public GameView(Context context) { super(context); paint = new Paint();// 画笔 paint.setColor(Color.RED); pai... 阅读全文

posted @ 2012-07-05 08:19 DON'T PANIC 阅读(223) 评论(0) 推荐(0)

导航