摘要: SQLite简介Google为Andriod的较大的数据处理提供了SQLite,他在数据存储、管理、维护等各方面都相当出色,功能也非常的强大。SQLite具备下列特点:1.轻量级使用 SQLite 只需要带一个动态库,就可以享受它的全部功能,而且那个动态库的尺寸想当小。2.独立性SQLite 数据库... 阅读全文
posted @ 2015-06-05 17:24 guoliuya 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Service是Android中四大组件之一,在Android开发中起到非常重要的作用,先来看一下官方对Service的定义:AServiceis an application component that can perform long-running operations in the bac... 阅读全文
posted @ 2015-06-05 17:18 guoliuya 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1.在service中重写下面的方法,这个方法有三个返回值, START_STICKY是service被kill掉后自动重写创建@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {return STAR... 阅读全文
posted @ 2015-06-05 17:11 guoliuya 阅读(1107) 评论(0) 推荐(0) 编辑