android应用多线程守护让你非常难杀死它

Posted lytwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android应用多线程守护让你非常难杀死它相关的知识,希望对你有一定的参考价值。

1、android 应用开启后启动一个服务

public class TestserviceActivity extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
System.out.println("activity执行的线程id:"+ Thread.currentThread().getName() +"--"+
Thread.currentThread().getId());
System.out.println("activity的进程id:"+android.os.Process.myPid());
        
        Intent intent = new Intent(this,Service1.class);
        startService(intent);
    }

}

2、第一个服务

public class Service1 extends Service {


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

@Override
public void onCreate() {
// TODO Auto-generated method stub
System.out.println("服务1 被开启");
System.out.println("服务执行的线程id:"+ Thread.currentThread().getName() +"--"+
Thread.currentThread().getId());
System.out.println("服务的进程id:"+android.os.Process.myPid());
super.onCreate();
}

@Override
public void onDestroy() {
Intent intent = new Intent(this,Service2.class);
startService(intent);
super.onDestroy();
}


}

3、第2个服务

public class Service2 extends Service {


@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate() {
System.out.println("服务2 被开启");
super.onCreate();
}

@Override
public void onDestroy() {
Intent intent = new Intent(this,Service1.class);
startService(intent);
super.onDestroy();
}
}

4、清单文件里

 <service android:name=".Service1"
            android:process="cn.it.yqq"
            ></service>
        <service android:name=".Service2"></service>



































































以上是关于android应用多线程守护让你非常难杀死它的主要内容,如果未能解决你的问题,请参考以下文章

Android开发之怎样监听让Service不被杀死

Android 通过JNI实现守护进程,使得Service服务不被杀死

java多线程/并发学习笔记

android是否会为了释放内存而杀死单身?

守护线程与非守护线程的区别

(转)Java中的守护线程