Android中有四个重要的组件类型(教程有详细Android开发教程讲解):Activities、Services、Broadcast receivers、Content providers。 Activities1、多个activity可以组合在一起使用并构成一个组合式应用,但是它们各自仍然是互...
分类:
移动开发 时间:
2014-11-03 16:14:19
阅读次数:
338
谈到Android的开发必然会涉及到Android开发的四大组件(Activities 、Services、Content providers、Broadcast receivers),而Service是Android的四大组件之一,被用来执行长时间的后台任务,同样,线程也可以实现在后台执行任务,它...
分类:
其他好文 时间:
2014-11-03 15:55:57
阅读次数:
120
Activities提供了一种方便管理的创建、保存、回复的对话框机制,例如onCreateDialog(int),onPrepareDialog(int, Dialog),showDialog(int),dismissDialog(int)等方法,如果使用这些方法的话,Activity将通过ge.....
分类:
移动开发 时间:
2014-10-31 01:02:19
阅读次数:
330
android.app.ActivityManager这个类主要用来管理全部设备上的Activities。权限:android.permission.GET_TASKS方法:| 返回类型 方法|1.List getRecentTasks(int maxNum, int flags) 返回用...
分类:
其他好文 时间:
2014-10-30 14:45:42
阅读次数:
273
上一篇我们简单的介绍了一下RoboGuice的使用(【十一】注入框架RoboGuice使用:(Your
First Injection into a Custom View class)),今天我们来看下内容提供者(ContentProvider)的注入。
和Robo*Activities一样,RoboContentProviders通过RoboGuice也能自动获得注...
分类:
其他好文 时间:
2014-10-29 00:28:29
阅读次数:
232
1.Bundle savedInstanceState it is not persist. it does not share between activities, it is nolyfor one activity. it is saved for soft kill like: 1.o.....
分类:
移动开发 时间:
2014-10-28 07:02:20
阅读次数:
211
上一篇我们简单的介绍了一下RoboGuice的使用(【八】注入框架RoboGuice使用:(Your
First Injected Fragment)),今天我们来看下服务(Service)和广播接受者(BroadCast Receiver)的注入
(一):和Robo*Activities一样,RoboServices和RoboIntentServices通过RoboGuice...
分类:
其他好文 时间:
2014-10-27 21:18:22
阅读次数:
198
1. Bound Services A bound service is the server in a client-server interface. A bound service allows components (such as activities) to bind to the s....
分类:
移动开发 时间:
2014-10-27 12:28:20
阅读次数:
250
1. Tasks and Back Stack An application usually contains multiple activities. Each activity should be designed around a specific kind of action the us....
分类:
移动开发 时间:
2014-10-24 14:16:41
阅读次数:
297
1. Loaders loaders make it easy to asynchronously load data in an activity or fragment. Loaders have these characteristics: They are available to ...
分类:
移动开发 时间:
2014-10-24 12:46:03
阅读次数:
159