android 怎么打印service生命周期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 怎么打印service生命周期相关的知识,希望对你有一定的参考价值。

参考技术A 有一个应用场景是,需要开机启动一个Service,在Service中另开一个线程,去对比用户配置中的时间,作出及时提醒。
然后面试的时候在描述该做法时就被问到一个问题,如果Service被系统或者其他应用kill了怎么办?我当时的回答是,在onDestroy中去处理。面试官说,onDestroy并不会被调用。
面试的详情暂且不表,在后期会专门写面经。现在讨论这个问题,Service被kill后生命周期是怎样的。
OK,用代码说话。
1,新建一个项目,项目中有一个Activity,一个Service。在Activity的button的监听处理中去开启这个Service
MainActivity.java

package com.zhenghuiy.killedservicelifecycletest;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener
private Button startServiceBtn;

@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initViews();


private void initViews()
startServiceBtn = (Button) findViewById(R.id.startService);
startServiceBtn.setOnClickListener(this);


@Override
public void onClick(View view)
if(view.getId() == R.id.startService)
Intent intent = new Intent();
intent.setClass(this, MyService.class);
this.startService(intent);






  

2,重写Service的大部分函数,具体看注释
MyService.java

package com.zhenghuiy.killedservicelifecycletest;

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

public class MyService extends Service implements Runnable
/*
* Service当以bindService的形式调用时,会调用onBind
* 当以startService,则调用onStartCommand
* 另外,onBind是一个抽象函数,必须重写
* */

@Override
public int onStartCommand(Intent intent, int flags, int startId)
showLog("onStartCommand is called");

//Service运行在UI主线程,为了避免因堵塞而被关闭,另开一个线程
new Thread(this).start();

return super.onStartCommand(intent, flags, startId);


@Override
public IBinder onBind(Intent itent)
showLog("onBind is called");
return null;


@Override
public void onCreate()
super.onCreate();
showLog("onCreate is called");


@Override
public void onDestroy()
super.onDestroy();
showLog("onDestroy is called");


/*
* onStart方法已经过时
* 在2.0之后的版本使用onStartCommand
* */
@Override
@Deprecated
public void onStart(Intent intent, int startId)
super.onStart(intent, startId);
showLog("onStart is called,the Intent action is"+intent.getAction());


@Override
public void onTaskRemoved(Intent rootIntent)
super.onTaskRemoved(rootIntent);
showLog("onTaskRemoved is called,the Intent action is"+rootIntent.getAction());


@Override
public void onTrimMemory(int level)
super.onTrimMemory(level);
showLog("onTrimMemory is called,the level is"+level);


private void showLog(String text)
Log.v(this.getClass().getName(),text);


@Override
public void run()
while(true)




  

以上是关于android 怎么打印service生命周期的主要内容,如果未能解决你的问题,请参考以下文章

Android-Android中service与application的生命周期有关系吗

Android中Service的生命周期与启动方法有啥区别?

Service的生命周期

Android Service概述作用生命周期

android四大基础组件--Service生命周期详解

Android中service的生命周期