Location:
Search - android paint
Search list
Description: 第一部分 Android简介
第1章 快速入门.............. 3
1.1 安装工具...... 3
1.1.1 Java 5.0+.... 3
1.1.2 Eclipse.......... 4
1.1.3 Android....... 4
1.1.4 Eclipse插件..................... 5
1.2 创建第一个程序.... 7
1.3 在模拟器上运行程序............... 8
1.4 在手机上运行程序..................... 9
1.5 快速阅读指南.......... 9
第2章 基本概念........... 11
2.1 Android的系统架构................ 11
2.1.1 Linux内核..................... 11
2.1.2 本机库...... 12
2.1.3 Android运行时......... 13
2.1.4 应用程序框架........... 14
2.1.5 应用程序 15
2.2 它还活着... 15
2.2.1 进程不等于应用程序......... 16
2.2.2 应用程序生命周期............... 17
2.3 构建块......... 19
2.3.1 活动............ 19
2.3.2 意图............ 19
2.3.3 服务............ 19
2.3.4 内容提供者................. 19
2.4 使用资源... 20
2.5 安全性......... 20
2.6 快速阅读指南....... 21
第二部分 Android基础知识
第3章 设计用户界面..................... 25
3.1 数独游戏简介....... 25
3.2 声明性设计............. 26
3.3 创建启动界面....... 27
3.4 使用替代资源....... 34
3.5 实现About对话框..................... 37
3.6 应用主题... 41
3.7 添加菜单... 43
3.8 添加设置... 45
3.9 开始新游戏............. 47
3.10 利用日志消息调试程序... 48
3.11 利用调试器调试程序......... 50
3.12 退出游戏 50
3.13 快速阅读指南.... 50
第4章 绘制2D图形...................... 53
4.1 Android图形基础...................... 53
4.1.1 Color类... 53
4.1.2 Paint类... 54
4.1.3 Canvas类 55
4.1.4 Path类...... 55
4.1.5 Drawable类................. 56
4.2 在Sudoku程序中添加图形............... 58
4.2.1 开始游戏 58
4.2.2 定义Game类................. 58
4.2.3 定义PuzzleView类............... 60
4.2.4 绘制游戏盘面........... 61
4.2.5 绘制数字 63
4.3 处理输入... 65
4.3.1 定义和更新选定区域......... 66
4.3.2 输入数字 68
4.3.3 增加提示 69
4.3.4 抖动屏幕 70
4.4 其他问题... 71
4.4.1 创建软键盘................. 71
4.4.2 实现游戏逻辑........... 76
4.4.3 其他功能 78
4.5 更多改进... 80
4.6 快速阅读指南....... 81
第5章 多媒体. 83
5.1 播放音频... 83
5.2 播放视频... 88
5.3 为数独游戏配上音乐............ 92
5.4 快速阅读指南....... 94
第6章 存储本地数据..................... 95
6.1 为数独游戏添加选项............ 95
6.2 继续玩前一个游戏.................. 97
6.3 记住当前位置....... 99
6.4 访问内部文件系统............... 100
6.5 访问SD卡.............. 101
6.6 快速阅读指南.... 103
第三部分 高级主题
第7章 互联的世界. 107
7.1 通过意图实现浏览............... 108
7.2 利用视图打开网页............... 111
7.3 JavaScript与Java通信.......... 115
7.4 使用Web服务..... 121
7.5 快速阅读指南.... 131
第8章 定位与环境感知........... 133
8.1 位置,位置,位置............... 133
8.1.1 我在哪里.................... 135
8.1.2 更新位置.................... 137
8.1.3 模拟说明.................... 138
8.2 充分利用传感器..................... 139
8.2.1 了解传感器.............. 139
8.2.2 解析传感器的读数............ 140
8.2.3 模拟说明.................... 140
8.3 地图功能 141
8.3.1 嵌入MapView........... 142
8.3.2 准备就绪.................... 145
8.3.3 模拟说明.................... 146
8.4 快速阅读指南.... 147
第9章 SQL实战...... 149
9.1 SQLite简介........... 149
9.2 SQL基础 150
9.2.1 DDL语句.................... 151
9.2.2 修改语句.................... 151
9.2.3 查询语句.................... 151
9.3 你好,数据库.... 152
9.3.1 使用SQliteOpenHelper 153
9.3.2 定义主程序.............. 155
9.3.3 添加一行.................... 156
9.3.4 运行一个查询........ 157
9.3.5 显示查询结果........ 158
9.4 数据绑定 159
9.5 使用ContentProvider...... 162
9.5.1 更改主程序.............. 164
9.5.2 添加一行.................... 164
9.5.3 运行一个查询........ 165
9.6 实现ContentProvider...... 165
9.7 快速阅读指南.... 166
第10章 利用OpenGL实现3D图形.............. 169
10.1 理解3D图形..... 169
10.2 OpenGL简介.... 170
10.3 构建一个OpenGL程序... 171
10.4 管理线程............. 173
10.5 构建一个模型. 178
10.6 光线、相机…….................. 181
10.7 动作......... 183
10.8 应用纹理............. 184
10.9 透明效果............. 187
10.10 快速阅读指南..................... 189
第四部分 附录
附录A Java与Android语言及其API.......... 193
附录B 参考书目........ 197
Platform: |
Size: 13578541 |
Author: pumaxy |
Hits:
Description: this application is about paint in android....u can do fun through this application in mobiless.
Platform: |
Size: 2599936 |
Author: kiran kumar bussa |
Hits:
Description: 关于android中Graphics中的paint类和color的实例-Graphics on the android in the paint in the instance of class and color
Platform: |
Size: 29696 |
Author: 宋明杰 |
Hits:
Description: it s paint tool for android.
very simple apps.
Platform: |
Size: 44032 |
Author: 2wise |
Hits:
Description: Android 画图学习总结。
Android画图学习总结(一)类的简介
Android画图学习总结(二)Bitmap
Android画图学习总结(三)Drawable
Android画图学习总结(四)Animation Android画图学习总结(五)Paint -Android drawing study concluded. Android drawing study concluded (a) an introduction to Android drawing class study summary (b) Bitmap Android drawing study summary (C) Drawable Android drawing study summary (d) Animation Android drawing study summary (V) Paint
Platform: |
Size: 551936 |
Author: 郑绍华 |
Hits:
Description: android画图板,供初学者使用,学习并且交流-android drawing board
Platform: |
Size: 662528 |
Author: 王志勇 |
Hits:
Description: Android中对于GL的用法,简单的描述了GL得用法,希望大家能够喜欢,也能学到东西-Android usage in the GL, GL was a simple description of usage, I hope you will enjoy it, but also learn something. . .
Platform: |
Size: 368640 |
Author: 高飞 |
Hits:
Description: android 开发过程中,画笔的使用,非常有用- the use of the paint in android development, it is very useful
Platform: |
Size: 48128 |
Author: 英儿 |
Hits:
Description: Surface的一些基本的使用 Surface的一些基本的使用-import java.util.ArrayList
import java.util.List
import android.content.Context
import android.graphics.Bitmap
import android.graphics.BitmapFactory
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
import android.view.KeyEvent
import android.view.MotionEvent
import android.view.SurfaceHolder
import android.view.SurfaceView
Platform: |
Size: 1928192 |
Author: 张志超 |
Hits:
Description: 安卓开发画图板源码,初学者的入门代码。建议安装在Android 4.0以上系统。-Android paint code
Platform: |
Size: 674816 |
Author: swl |
Hits:
Description: Paint画笔,Android开发精典案例源码,很好的参考资料。-Paint brushes, Android development of classical case of source code, a good reference.
Platform: |
Size: 49152 |
Author: 桂花翅子 |
Hits:
Description: 该android源码为高仿米聊的手写识别和涂鸦绘画功能,包含两个程序,运行效果良好,适合与学习android图形图像的同学。-The android source for high imitation rice talk and graffiti painting handwriting recognition features, including two programs running well suited for students learning android graphic images.
Platform: |
Size: 961536 |
Author: 王诺葡 |
Hits:
Description: Delegate implementing the native methods of android.graphics.Paint.
Platform: |
Size: 6144 |
Author: xukoqer |
Hits:
Description: android实现简单画板功能,出入安卓必看哦!-Android Paint!
Platform: |
Size: 1030144 |
Author: 琳琳 |
Hits:
Description: ANDROID画曲线代码,可以参考来画心电图-using canvas to paint line
Platform: |
Size: 4941824 |
Author: matt |
Hits:
Description: package com.cqvie
import android.graphics.*
import android.graphics.Paint.Style
public class Kuai
{
//public int HANG, LIE //最大行、最大列
public int hang, lie //?前行、?前列
public int BianChang //方?的??
public int YanSe //方?的?色
public void Hua(Bitmap bmp) //在?布上?方?
{
Canvas c=new Canvas(bmp)
Rect rc=new Rect(
lie * BianChang, hang * BianChang,
(lie+1) * BianChang,(hang+1) * BianChang)
Paint paint=new Paint()
paint.setColor(YanSe)
paint.setStyle(Style.STROKE) //空心
paint.setStrokeWidth(2) //??
c.drawRect(rc, paint)
}
}-package com.cqvie
import android.graphics.*
import android.graphics.Paint.Style
public class Kuai
{
//public int HANG, LIE //最大行、最大列
public int hang, lie //?前行、?前列
public int BianChang //方?的??
public int YanSe //方?的?色
public void Hua(Bitmap bmp) //在?布上?方?
{
Canvas c=new Canvas(bmp)
Rect rc=new Rect(
lie* BianChang, hang* BianChang,
(lie+1)* BianChang,(hang+1)* BianChang)
Paint paint=new Paint()
paint.setColor(YanSe)
paint.setStyle(Style.STROKE) //空心
paint.setStrokeWidth(2) //??
c.drawRect(rc, paint)
}
}
Platform: |
Size: 2048 |
Author: 朱晨臨 |
Hits:
Description: 画图实例程序,android程序,可以随意使用画笔画图,2D OpenGl调用-Paint sample program, android program, you can feel free to use the pen drawing, 2D OpenGl call
Platform: |
Size: 1625088 |
Author: lichang |
Hits:
Description: 涂鸦板 绘图板,android应用 简单分分钟的事-this is a paint
Platform: |
Size: 1024 |
Author: 会飞的云 |
Hits:
Description: 本项目是一个仿安卓脸萌app应用的源码,脸萌是一款非常有趣的拼脸软件,即使你不会画画,也可以轻松制作你的专属卡通形象。脸萌里有多种发型、五官、背景。一句话概况就是可以做一个Q版的和你长得像的人。本项目是一个高仿脸萌的源码,主要使用ViewPager和Fragment实现,只做了男生部分,另外气泡部分只写了布局功能好像不能用。-This project is a fake Android face Meng app application source code, face Meng is a very interesting fight face software, even if you can not paint, you can easily make your own cartoon image. Face Meng has a variety of hair, facial features, background. An overview of the situation is that you can do a Q version of the people you look like. This project is a high imitation of the face Meng source, the main use of Fragment and ViewPager to achieve, only to do the boys part, and the bubble part only write the layout function seems to be.
Platform: |
Size: 7106560 |
Author: zhoufan |
Hits:
Description: 用eclipse绘制乌龟,用frame语句等,实现乌龟的绘制(paint tortoise use eclipse)
Platform: |
Size: 1024 |
Author: babyee |
Hits: