07 2014 档案
Android文档-开发者指南-第一部分:入门-中英文对照版
摘要:发布的博客,排版太不行了,整理下发在百度盘上了:第一部分:Introduction(入门) 0、Introduction to Android(引进到Android) 1、Application Fundamentals(应用程序基础) 2、Device Compatibility(设备... 阅读全文
posted @ 2014-07-11 23:12 wangwangheng 阅读(487) 评论(0) 推荐(0)
4、一、Introduction(入门):3、System Permissions(系统权限)
摘要:3、System Permissions(系统权限)Android is a privilege-separated operating system, in which each application runs with a distinct system identity (Linux user ID and group ID). Parts of the system are also ... 阅读全文
posted @ 2014-07-11 23:02 wangwangheng 阅读(2109) 评论(0) 推荐(0)
3、一、Introduction(入门):2、Device Compatibility(设备兼容性)
摘要:2、Device Compatibility(设备兼容性)Android is designed to run on many different types of devices, from phones to tablets and televisions. As a developer, the range of devices provides a huge potential audi... 阅读全文
posted @ 2014-07-11 22:58 wangwangheng 阅读(1072) 评论(0) 推荐(0)
2、一、Introduction(入门):1、Application Fundamentals(应用程序基础)
摘要:一、Introduction(入门) 1、Application Fundamentals(应用程序基础)Android apps are written in the Java programming language. The Android SDK tools compile your code—along with any data and resource files—into an ... 阅读全文
posted @ 2014-07-11 22:53 wangwangheng 阅读(661) 评论(0) 推荐(0)
1、一、Introduction(入门): 0、Introduction to Android(引进到Android)
摘要:一、Introduction(入门)0、Introduction to Android(引进到Android)Android provides a rich application framework that allows you to build innovative apps and game... 阅读全文
posted @ 2014-07-11 22:39 wangwangheng 阅读(680) 评论(0) 推荐(0)
小算法:合并两个有序数组,合并之后仍然有序
摘要:小算法:合并两个有序数组,合并之后仍然有序 1 /** 2 * 合并两个有序数组,合并后仍然有序 3 * @param a 要合并的数组A 4 * @param b 要合并的数组B 5 * @param c 合并后的数组C 6 */ 7 pu... 阅读全文
posted @ 2014-07-09 22:55 wangwangheng 阅读(3880) 评论(1) 推荐(0)
小算法:求一个数的乘方 - 使用递归
摘要:小算法:求一个数的乘方 - 使用递归 1 /** 2 * 求一个整数的乘方 3 * @param num 要乘方的数字 4 * @param power 多少次方 5 * @return 6 */ 7 public static int po... 阅读全文
posted @ 2014-07-09 22:54 wangwangheng 阅读(2310) 评论(0) 推荐(0)
标准SQL资料整理
摘要:最近感觉SQL忘记的很快,于是把SQL的基础知识整理了下。 使用的工具是MindManager 9。 资料来自W3C School:http://www.w3school.com.cn/sql/index.asp 以及互联网上的其他资源。 Mind Manager 9 文件和图片文件下载地址:htt 阅读全文
posted @ 2014-07-03 22:45 wangwangheng 阅读(9395) 评论(23) 推荐(20)