
android
lisparking
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android 中的 Service 全面总结
Android 中的 Service 全面总结1、Service的种类 按运行地点分类:类别区别 优点缺点 应用本地服务(Local)该服务依附在主进程上, 服务依附在主进程上而不是独立的进程,这样在一定程度上节约了资源,另外Local服务因为是在同一进程因此不需要IPC转载 2014-03-20 14:44:32 · 400 阅读 · 0 评论 -
Android中使用Animation实现控件的动画效果以及Interpolator和AnimationListener的使用
Animation的4个基本动画效果What is Animation?public abstract classAnimationextends Objectimplements CloneableAbstraction for an Animation that can be applied to Views, Surfaces, or other ob转载 2014-03-21 15:59:02 · 536 阅读 · 0 评论 -
Android学习笔记(五一):服务Service(上)- IntentService
Android学习笔记(五一):服务Service(上)- IntentService对于需要长期运行,例如播放音乐、长期和服务器的连接,即使已不是屏幕当前的activity仍需要运行的情况,采用服务方式。服务将通过API触发启动或者通过IPC(Interprocess Communication)连接请求触发启动。服务将一直运行直至被关闭,或者内存不足时由系统关闭。一转载 2014-03-21 09:59:08 · 763 阅读 · 0 评论 -
PendingIntent详解
转载自:http://hubingforever.blog.163.com/blog/static/17104057920117275222472/简介PendingIntent用于描述Intent及其最终的行为. 你可以通过getActivity(Context context, int requestCode, Intent intent, int flags)系列方法从系转载 2014-03-21 11:37:55 · 501 阅读 · 0 评论