«

打不死的小强 杀不死的服务 开机自启动服务

时间:2024-3-2 18:26     作者:韩俊     分类: Android



如何让APP随手机开机启动,然后自启动界面或自启动后台服务呢?



那么就要用到强大的广播接收者了。



还有要怎么防止自己的APP不被应用管理器杀死呢?



那么就要用到强大的服务了,而且还要用到两个服务。



以下Demo代码即可以实现以上两个功能。



先来个步骤吧:



1、新建一个类并继承于BroadcastReceiver



2、在清单文件中注册receiver



3、新建一个类并继承于Service



4、在清单文件中注册service



5、再新建一个类并继承于Service



6、在清单文件中注册service



注意的是:



两个服务的内容一样,区别只在销毁onDestory方法中启动另一个服务,这也是服务不被杀死的关键。



不说了,看代码。



清单文件

--/AutoOpenApp/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android&quot;
package="com.devwang.autoopenapp"
android:versionCode="1"
android:versionName="1.0" >

&lt;uses-sdk
    android:minSdkVersion=&quot;8&quot;
    android:targetSdkVersion=&quot;21&quot; /&gt;


&lt;uses-permission android:name=&quot;android.permission.RECEIVE_BOOT_COMPLETED&quot; /&gt;


&lt;application
    android:allowBackup=&quot;true&quot;
    android:icon=&quot;@drawable/ic_launcher&quot;
    android:label=&quot;@string/app_name&quot;
    android:theme=&quot;@style/AppTheme&quot; &gt;
    &lt;activity
        android:name=&quot;.MainActivity&quot;
        android:label=&quot;@string/app_name&quot; &gt;
        &lt;intent-filter&gt;
            &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;


            &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
        &lt;/intent-filter&gt;
    &lt;/activity&gt;


    &lt;service android:name=&quot;com.devwang.autoopenapp.AutoOpenService&quot; &gt;
    &lt;/service&gt;
    &lt;service android:name=&quot;com.devwang.autoopenapp.AutoOpenServicer&quot; &gt;
    &lt;/service&gt;


    &lt;receiver android:name=&quot;.BootBroadcastReciver&quot; &gt;
        &lt;intent-filter&gt;
            &lt;action android:name=&quot;android.intent.action.BOOT_COMPLETED&quot; /&gt;
        &lt;/intent-filter&gt;
    &lt;/receiver&gt;
&lt;/application&gt;


</manifest>



布局文件

--/AutoOpenApp/res/layout/activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android&quot;
xmlns:tools="http://schemas.android.com/tools&quot;
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.devwang.autoopenapp.MainActivity" >

&lt;TextView
    android:id=&quot;@&#43;id/tv&quot;
    android:layout_width=&quot;fill_parent&quot;
    android:layout_height=&quot;fill_parent&quot;
    android:gravity=&quot;center&quot;
    android:textSize=&quot;60sp&quot;
    android:text=&quot;开机自启APP&quot; /&gt;


</RelativeLayout>


主界面

--/AutoOpenApp/src/com/devwang/autoopenapp/MainActivity.java

package com.devwang.autoopenapp;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;


public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    TextView text=(TextView) findViewById(R.id.tv);
    text.setText(&quot;这是一个自动启动的例子!&quot;);

    System.out.println(&quot;Service oncreate&quot;);
    Intent i = new Intent(this,AutoOpenService.class);
    startService(i);
}



}



广播接收者

-- /AutoOpenApp/src/com/devwang/autoopenapp/BootBroadcastReciver.java

package com.devwang.autoopenapp;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

//开机启动完成的 广播接受者 在这里启动APP Activity
public class BootBroadcastReciver extends BroadcastReceiver {
static final String ACTION = "android.intent.action.BOOT_COMPLETED";

@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
if (intent.getAction().equals(ACTION)) {
//自启动界面
//Intent i = new Intent(context, MainActivity.class);
//i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
//context.startActivity(i);

//自启动服务
Intent i = new Intent(context, AutoOpenService.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(i);
}
}

}


两个服务

第一个服务

--/AutoOpenApp/src/com/devwang/autoopenapp/AutoOpenService.java

package com.devwang.autoopenapp;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;

public class AutoOpenService extends Service {

@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}

@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();

System.out.println("Servicer ondestory");
}

@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();

System.out.println("Servicer ondestory");
Intent i = new Intent(this, AutoOpenServicer.class);
startService(i);
}

}


第二个服务

--/AutoOpenApp/src/com/devwang/autoopenapp/AutoOpenServicer.java
package com.devwang.autoopenapp;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;

public class AutoOpenServicer extends Service {

@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}

@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();

System.out.println("Service onCreate");
}

//守护进程 在次方法中 本服务会被销毁 此时可以启动新的服务
@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();

System.out.println("Service ondestory");
Intent i = new Intent(this,AutoOpenService.class);
startService(i);
}


}


OK

||

V

Gif



开机自启动后台服务Gif


http://bruceanne-gif.stor.sinaapp.com/autoservice.gif



两进程互相守护防被杀死与单进程比较Gif



http://bruceanne-gif.stor.sinaapp.com/doubleservice.gif





Gif

A

||

OK



(源自it黑马的视频教程)

标签: android

热门推荐