
Android操作系统
文章平均质量分 79
_suzhou
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
android--Getting Started
1 learning the fundamental componentsBefore we discuss more detail about this framework, we will briefly cover some fundamental concepts we should know. It is very fundamental, but fundamental is mo原创 2013-09-09 12:41:51 · 677 阅读 · 0 评论 -
android(2)——Structure of an Android Application
1 structure of an android applicationAn Android application is primarily made up of three pieces: the application descriptor, a collection of various resources, and the application's source code.I原创 2013-09-13 17:03:01 · 770 阅读 · 0 评论 -
Andriod(3)——Understanding Android Resources
Now, we will follow that introduction with an in-depth look at Android SDK fundamentals and cover resources , content providers, and intents. These three concepts are fundamental to understanding Andr原创 2013-09-16 09:45:53 · 733 阅读 · 0 评论 -
Android开发(7)数据库和Content Provider
问题聚焦:思想:应用程序数据的共享对数据库的访问仅限于创建它的应用程序,但是事情不是绝对的Content Provider提供了一个标准的接口,可供其他应用程序访问和使用其他程序的数据原创 2013-12-26 14:15:23 · 1104 阅读 · 0 评论 -
vim中执行shell命令
vi中执行shell命令有两种显示方式:在一个临时缓冲区显示命令执行的结果将命令执行的结果粘贴在光标所在行的下一行,或者指定行号粘贴。1 在一个临时窗口显示命令执行的结果vi命令 :!command 例如: vi执行命令 :!ls 结果: vi版本不同,显示的方式不同,在这里的临时缓冲区还可以看到上次执行命令的结果2 将命令执行的结果粘贴在光标所在行的下一行vi中执行原创 2015-07-27 16:24:40 · 2193 阅读 · 1 评论