Android service永不杀死

    最近有个需求需要建一个service永远在后台运行来接收推送消息和一些定时器工作,首先想到的就是双进程守护原则,然后再利用aidl相互唤醒连个service1和service2,但是这样有个问题如果app一直运行在后台的话  这两个service 是不会关闭的,但是一旦利用home键关闭这个app那么伴随着这个连个service都会被杀死,这是因为app未获取自启动权限,以往我们通过检测Android的开机广播就能获取启动  但是对小米和华为系统来说他们已经屏蔽了这种方式,所以我选择了一种让用户自己开启自启动全县的方式,跟他们弹出受理界面,这样service就能一直在后台运行了


service1:

import android.app.Notification;

import android.app.PendingIntent;

import android.app.Service;

import android.content.Intent;

import android.os.Handler;

import android.os.IBinder;

import android.os.Message;

import android.os.RemoteException;

import android.util.Log;

import android.widget.Toast;

import com.plant.org.testserver.MainActivity;

import com.plant.org.testserver.R;

import com.plant.org.testserver.utils.Utils;

public class Service1 extends Service {

private Handler handler = new Handler() {

public void handleMessage(android.os.Message msg) {

switch (msg.what) {

case 1:

startService2();

break;

default:

break;

}

};

};

/**

* 使用aidl 启动Service2

*/

private StrongService startS2 = new StrongService.Stub() {

@Override

public void stopService() throws RemoteException {

Intent i = new Intent(getBaseContext(), Service2.class);

getBaseContext().stopService(i);

}

@Override

public void startService() throws RemoteException {

Intent i = new Intent(getBaseContext(), Service2.class);

getBaseContext().startService(i);

}

};

/**

* 在内存紧张的时候,系统回收内存时,会回调OnTrimMemory, 重写onTrimMemory当系统清理内存时从新启动Service2

*/

@Override

public void onTrimMemory(int level) {

/*

* 启动service2

*/

startService2();

}

@Override

public void onCreate() {

Toast.makeText(Service1.this, "Service1 正在启动...", Toast.LENGTH_SHORT)

.show();

startService2();

/*

* 此线程用监听Service2的状态

*/

new Thread() {

public void run() {

while (true) {

boolean isRun = Utils.isServiceWork(Service1.this,

"com.plant.org.testserver.service.Service2");

if (!isRun) {

Message msg = Message.obtain();

msg.what = 1;

handler.sendMessage(msg);

}

try {

Thread.sleep(1);

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

};

}.start();

}

/**

* 判断Service2是否还在运行,如果不是则启动Service2

*/

private void startService2() {

boolean isRun = Utils.isServiceWork(Service1.this,

"com.plant.org.testserver.service.Service2");

if (isRun == false) {

try {

startS2.startService();

} catch (RemoteException e) {

e.printStackTrace();

}

}

}

@Override

public int onStartCommand(Intent intent, int flags, int startId) {

Notification notification = new Notification(R.mipmap.ic_launcher,getString(R.string.app_name), System.currentTimeMillis());

PendingIntent pendingintent = PendingIntent.getActivity(this, 0,new Intent(this, MainActivity.class), 0);

// notification.setLatestEventInfo(this, "uploadservice", "请保持程序在后台运行", pendingintent);

startForeground(0x111, notification);

return START_STICKY_COMPATIBILITY;

}

@Override

public void onDestroy() {

super.onDestroy();

}

@Override

public IBinder onBind(Intent intent) {

return (IBinder) startS2;

}

@Override

public void onTaskRemoved(Intent rootIntent) {

super.onTaskRemoved(rootIntent);

Log.d("lib093","Service1清除");

}

}

----------------------------------------------------------------------------------------------------------------------

package  com.plant.org.testserver.service;

import android.annotation.SuppressLint;

import android.app.Service;

import android.content.Intent;

import android.os.Handler;

import android.os.IBinder;

import android.os.Message;

import android.os.RemoteException;

import android.widget.Toast;

import com.plant.org.testserver.utils.Utils;

/**

* 934042435@qq.com

*

* @author lib093

*

*/

public class Service2 extends Service {

private Handler handler = new Handler() {

public void handleMessage(android.os.Message msg) {

switch (msg.what) {

case 1:

startService1();

break;

default:

break;

}

};

};

/**

* 使用aidl 启动Service1

*/

private StrongService startS1 = new StrongService.Stub() {

@Override

public void stopService() throws RemoteException {

Intent i = new Intent(getBaseContext(), Service1.class);

getBaseContext().stopService(i);

}

@Override

public void startService() throws RemoteException {

Intent i = new Intent(getBaseContext(), Service1.class);

getBaseContext().startService(i);

}

};

/**

* 在内存紧张的时候,系统回收内存时,会回调OnTrimMemory, 重写onTrimMemory当系统清理内存时从新启动Service1

*/

@Override

public void onTrimMemory(int level) {

startService1();

}

@SuppressLint("NewApi")

public void onCreate() {

Toast.makeText(Service2.this, "Service2 启动中...", Toast.LENGTH_SHORT)

.show();

startService1();

/*

* 此线程用监听Service2的状态

*/

new Thread() {

public void run() {

while (true) {

boolean isRun = Utils.isServiceWork(Service2.this,

"com.plant.org.testserver.service.Service1");

if (!isRun) {

Message msg = Message.obtain();

msg.what = 1;

handler.sendMessage(msg);

}

try {

Thread.sleep(1);

} catch (InterruptedException e) {

e.printStackTrace();

}

}

};

}.start();

}

/**

* 判断Service1是否还在运行,如果不是则启动Service1

*/

private void startService1() {

boolean isRun = Utils.isServiceWork(Service2.this,

"com.plant.org.testserver.service.Service1");

if (isRun == false) {

try {

startS1.startService();

} catch (RemoteException e) {

e.printStackTrace();

}

}

}

@Override

public int onStartCommand(Intent intent, int flags, int startId) {

return START_STICKY;

}

@Override

public IBinder onBind(Intent intent) {

return (IBinder) startS1;

}

}

----------------------------------------------------------------------------------------------------------------------------

interface StrongService{

voidstartService();

voidstopService();

}

-------------------------------------------------------------------------------------------------------------------

/*打开自启动管理页*/

public  voidopenStart(Context context){

if(Build.VERSION.SDK_INT<23){

return;

}

String system =getSystem();

Intent intent =newIntent();

if(system.equals(SYS_EMUI)){//华为

ComponentName componentName =newComponentName("com.huawei.systemmanager","com.huawei.systemmanager.startupmgr.ui.StartupNormalAppListActivity");

intent.setComponent(componentName);

}else if(system.equals(SYS_MIUI)){//小米

ComponentName componentName =newComponentName("com.miui.securitycenter","com.miui.permcenter.autostart.AutoStartManagementActivity");

intent.setComponent(componentName);

}

try{

context.startActivity(intent);

}catch(Exception e){//抛出异常就直接打开设置页面

intent=newIntent(Settings.ACTION_SETTINGS);

context.startActivity(intent);

}

}

@Override

public voidonRequestPermissionsResult(intrequestCode, String permissions[],int[] grantResults) {

switch(requestCode) {

case11001:

if((grantResults.length>0) && (grantResults[0] == PackageManager.PERMISSION_GRANTED)) {

//TODO

}

break;

default:

break;

}

}

@Override

protected voidonDestroy() {

super.onDestroy();

Log.d("lib093","MainActivity销毁");

Intent i1 =newIntent(MainActivity.this, Service1.class);

startService(i1);

}

public voidonClick(View v) {

switch(v.getId()) {

caseR.id.button1:

Intent i1 =newIntent(MainActivity.this, Service1.class);

startService(i1);

Intent i2 =newIntent(MainActivity.this, Service2.class);

startService(i2);

break;

}

}

public staticString getSystem(){

String SYS="";

try{

Properties prop=newProperties();

prop.load(newFileInputStream(newFile(Environment.getRootDirectory(),"build.prop")));

if(prop.getProperty(KEY_MIUI_VERSION_CODE,null) !=null

|| prop.getProperty(KEY_MIUI_VERSION_NAME,null) !=null

|| prop.getProperty(KEY_MIUI_INTERNAL_STORAGE,null) !=null){

SYS =SYS_MIUI;//小米

}else if(prop.getProperty(KEY_EMUI_API_LEVEL,null) !=null

||prop.getProperty(KEY_EMUI_VERSION,null) !=null

||prop.getProperty(KEY_EMUI_CONFIG_HW_SYS_VERSION,null) !=null){

SYS =SYS_EMUI;//华为

}else if(getMeizuFlymeOSFlag().toLowerCase().contains("flyme")){

SYS =SYS_FLYME;//魅族

};

}catch(IOException e){

e.printStackTrace();

returnSYS;

}

returnSYS;

}

public staticString getMeizuFlymeOSFlag() {

returngetSystemProperty("ro.build.display.id","");

}

private staticString getSystemProperty(String key, String defaultValue) {

try{

Class clz = Class.forName("android.os.SystemProperties");

Method get = clz.getMethod("get", String.class, String.class);

return(String)get.invoke(clz, key, defaultValue);

}catch(Exception e) {

}

returndefaultValue;

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342

推荐阅读更多精彩内容