资源简介
android APP后台服务可以长期与服务器进行长期的交互,保证数据的实时性,这个小项目主要实现的是在app退出之后依然可以运行服务。使用系统的Intent.ACTION_TIME_TICK进行实现,这个系统的广播每隔一分钟就进行广播一次,可以在程序中接收该广播消息,接收到之后检测app中的service服务是否在运行,如果在运行,则不处理,如果没有运行,则重新启动该service服务。
代码片段和文件信息
/** Automatically generated file. DO NOT MODIFY */
package com.yin.servicetest;
public final class BuildConfig {
public final static boolean DEBUG = true;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 475 2015-03-13 20:35 ServiceTest\.classpath
文件 847 2015-03-13 20:34 ServiceTest\.project
文件 1140 2015-03-14 17:09 ServiceTest\AndroidManifest.xm
文件 1140 2015-03-14 17:09 ServiceTest\bin\AndroidManifest.xm
文件 1015 2015-03-14 17:04 ServiceTest\bin\classes\com\yin\application\MyApplication.class
文件 1450 2015-03-14 16:59 ServiceTest\bin\classes\com\yin\service\MyService.class
文件 347 2015-03-14 14:37 ServiceTest\bin\classes\com\yin\servicetest\BuildConfig.class
文件 606 2015-03-14 17:08 ServiceTest\bin\classes\com\yin\servicetest\MainActivity.class
文件 2314 2015-03-14 17:07 ServiceTest\bin\classes\com\yin\servicetest\MyReceiver.class
文件 343 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R$attr.class
文件 410 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R$drawable.class
文件 397 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R$layout.class
文件 436 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R$string.class
文件 434 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R$st
文件 544 2015-03-14 17:09 ServiceTest\bin\classes\com\yin\servicetest\R.class
文件 818388 2015-03-14 17:07 ServiceTest\bin\classes.dex
文件 273766 2015-03-13 21:07 ServiceTest\bin\dexedLibs\android-support-v4-e5a49945bc9c3a6f3274000ffe64eed2.jar
文件 120 2015-03-14 14:44 ServiceTest\bin\jarlist.cache
文件 3927 2015-03-13 21:06 ServiceTest\bin\res\crunch\drawable-hdpi\ic_launcher.png
文件 1934 2015-03-13 21:06 ServiceTest\bin\res\crunch\drawable-mdpi\ic_launcher.png
文件 6455 2015-03-13 21:06 ServiceTest\bin\res\crunch\drawable-xhdpi\ic_launcher.png
文件 13545 2015-03-13 21:06 ServiceTest\bin\res\crunch\drawable-xxhdpi\ic_launcher.png
文件 29387 2015-03-14 17:07 ServiceTest\bin\resources.ap_
文件 307809 2015-03-14 17:07 ServiceTest\bin\ServiceTest.apk
文件 161 2015-03-13 20:35 ServiceTest\gen\com\yin\servicetest\BuildConfig.java
文件 1774 2015-03-14 17:09 ServiceTest\gen\com\yin\servicetest\R.java
文件 156189 2015-03-13 20:34 ServiceTest\ic_launcher-web.png
文件 758727 2015-03-13 20:34 ServiceTest\libs\android-support-v4.jar
文件 781 2015-03-13 20:34 ServiceTest\proguard-project.txt
文件 563 2015-03-13 20:36 ServiceTest\project.properties
............此处省略53个文件信息
- 上一篇:JAVA通过实体生成数据库表
- 下一篇:Java_Web编程技术实验指导书
评论
共有 条评论