Location:
Search - android B
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: Android环境下通过SOCKET传递Parcel包并解出数据的例子程序
在Android环境下,甲程序(C++程序)将数据封装在 Parcel 中,并把 Parcel 发送到SOCKET;乙程序(C++程序)通过SOCKET接收到Parcel包,并解出封装在其中数据。
附带所需的Android.mk文件,并说明如何编译运行。列出了程序的运行结果,最后对程序存在的一些问题做了分析,提出了解决的思路。-Android environment SOCKET pass through Parcel data packets and examples of solution procedures for the Android environment in which a program (C++ program) data package in the Parcel and Parcel sent to the SOCKET B procedures (C++ program) through the receiver SOCKET Parcel to the package, and a solution in which the data package. Incidental Android.mk required documents, and how to run the compiler. Procedures are listed in the results, the last of a number of problems in the procedure to do an analysis of the ideas put forward.
Platform: |
Size: 125952 |
Author: code998 |
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: 提取出最全的Android4.0 API 的源代码,也就是android.jar源代码,这样在Eclipse关联到该源代码,就可以在项目中查看Android API 的实现了,希望对学习Android开发的人有帮助
下载教程。确保你已经安装了git jdk python等,操作系统环境为Linux。
1.创建bin目录,并加入到PATH
$ mkdir ~/bin
$ PATH=~/bin:$PATH
2.下载repo到刚刚创建的bin目录,并设置权限为可执行。
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
3.创建Android源代码存放目录并进入到该目录
$ mkdir Android-4.0.0_r1
$ cd Android-4.0.0_r1
4.初始化Android4.0.1的Git库
$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
5.最后执行开始同步下载
$ repo sync-failed to translate
Platform: |
Size: 11740160 |
Author: 小邓 |
Hits:
Description: 实现在Android上的SSL通信,android中只能使用BKS的加密和解密,配好BKS环境后可以通过以上代码实现功能-Implementation of SSL communication on Android, android can only use the encryption and decryption BKS, BKS environment with good code after the above functions
Platform: |
Size: 273408 |
Author: 邹凡 |
Hits:
Description: 2011年,若水工作室制作了《Android开发从零开始》系列课程,感谢大家的鼓励和支持。为了进一步提高Android开发培训水平,2012年若水工作室又倾心制作的项目实战视频『若水新闻』客户端开发教程,今天终于与大家见面了。 本系列课程目标 a.提高UI设计能力 b.巩固Android程序设计基础 c.异步更新UI d.掌握Android中HTTP通信 e.掌握JSON格式解析-In 2011, Flow studio produced a series of courses of the Android developer from scratch, thank you for your encouragement and support. To further enhance the Android development training level, the 2012 Flow Studios attracted to the production of the project the actual video is like news client development tutorial, finally meet with you today. This series of courses target a. Improve the UI design capabilities b. Consolidate the Android application design basis c. Asynchronous update the UI d. Master in Android HTTP communication e master JSON format resolution
Platform: |
Size: 1824768 |
Author: 冯术林 |
Hits:
Description: I
would like to thank everyone who participated in the creation of this book. My agent,
Neil Salkind Roger, Carly, Janet, Bill, and the crew at McGraw-Hill Gil Polo and
everyone at Studio B.
I would also like to thank my family, Suzannah, Christian, and Sophia Brett, Robert,
Roger, Zack, Mark, Kurt, Walter, Walter, Walter, Steve, Steve, Steve, and Gary—and all
my colleagues in Central Florida and anyone else whom I may have forgotten.-I
would like to thank everyone who participated in the creation of this book. My agent,
Neil Salkind Roger, Carly, Janet, Bill, and the crew at McGraw-Hill Gil Polo and
everyone at Studio B.
I would also like to thank my family, Suzannah, Christian, and Sophia Brett, Robert,
Roger, Zack, Mark, Kurt, Walter, Walter, Walter, Steve, Steve, Steve, and Gary—and all
my colleagues in Central Florida and anyone else whom I may have forgotten.
Platform: |
Size: 3622912 |
Author: minh |
Hits:
Description: ±àòë ·tÎ ñ Æ ÷1쨣¬
¶ Ô óú±àòë ·tÎ ñ Æ ÷μÄ Ñ ¡ Ô ñ £¬ Ñ ¡ Ô ñ °2×°Ubuntu10.04(64 bit)£¬ 2» Ä üê1óà 32bitμÄ ¡ £DèòaóDòÔ Ï Â Å ä Ö Ã £o
a.°2×°ubuntu-10.04.4-desktop-amd64.iso
b.Ô úÏ ß °2×°JDK6.0
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jdk
sudo update-alternatives --config java-1̨ ڱ ѡ ѡ ו ו Ubuntu10.04 (64 bit) 32bitġ Ҫ ã a. ו ו ubuntu-10.04.4-desktop-amd64.iso b. ߰ ו ו JDK6.0 sudo add-apt-repository " deb http://archive.canonical.com/lucid partner " sudo add-apt-repository ppa: ferramroberto/java sudo apt-get update sudo apt-get install sun-java6-jdk sudo update-alternatives- config java
Platform: |
Size: 323584 |
Author: luyunfeng |
Hits:
Description: IOS和ANDROID开发资料,包括平台搭建的具体细节-请键入文字或网站地址,或者上传文档。
取消
IOS hé ANDROID kāifā zīliào, bāokuò píngtái dājiàn de jùtǐ xìjiéIOS and ANDROID development information, including specific details of the platform to build
Platform: |
Size: 16512000 |
Author: BigBen |
Hits:
Description: 蓝牙控制器 a,b,k,g,u,d 6个指令- a,b,k,g,u,d
Platform: |
Size: 92160 |
Author: Xuefeng Qian |
Hits:
Description: .gg实现功能
a.登录服务端
b.文字聊天,表情图片,消息提醒
c.好友列表
d.显示好友在线状态
e.文件传输-This is a fake QQ the document is written ANDROID
Platform: |
Size: 13505536 |
Author: 146256 |
Hits:
Description: 简单的一个android的入口界面在上面显示hello pudn!-hello world
Platform: |
Size: 1539072 |
Author: 会飞的云 |
Hits:
Description: This program gives the CDMA model systems div hr div B 文件列表 B : div di()
Platform: |
Size: 7168 |
Author: mrfkl%24817
|
Hits:
Description: a sample code for send sms using GPRS Modem div hr div B 文件列表 B : div()
Platform: |
Size: 12288 |
Author: Alanvv
|
Hits:
Description: Infenion ULC mobile phone solution document div hr div B 文件列表 B : div()
Platform: |
Size: 1119232 |
Author: adignt
|
Hits:
Description: opnet software using for simulation network div hr div B 文件列表 B : div()
Platform: |
Size: 730112 |
Author: NWTXbcs%5F586545
|
Hits:
Description: Updating version information at run-time div hr div B 文件列表 B : div div()
Platform: |
Size: 17408 |
Author: Ulazemp
|
Hits:
Description: 是3GPP中GSM最重要的标准,业内简称GSM0505 这个标准详细规定了GSM发射与接收技术,其中GMSK,8-PSK,B()
Platform: |
Size: 702464 |
Author: frapfwydk |
Hits:
Description: This program gives the CDMA model systems div hr div B 文件列表 B : div di()
Platform: |
Size: 7168 |
Author: iweevpreter |
Hits:
Description: a GSM 06 10 RPE­LTP coder and decoder in C div hr div B 文件列表 B : d()
Platform: |
Size: 57344 |
Author: Mzdge |
Hits: