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

来源:互联网 发布:企业开淘宝店怎样记账 编辑:程序博客网 时间:2024/04/29 03:50

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>

0 1
原创粉丝点击