基于Android Service 生命周期的详细介绍

基于Android Service 生命周期的详细介绍,第1张

概述Service概念及用途:Android中的服务,它与Activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,Service进程并没有结束,它仍然在后台运行,那我们什么时候会用到Service呢

Service概念及用途:

AndroID中的服务,它与Activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,Service进程并没有结束,它仍然在后台运行,那我们什么时候会用到Service呢?比如我们播放音乐的时候,有可能想边听音乐边干些其他事情,当我们退出播放音乐的应用,如果不用Service,我们就听不到歌了,所以这时候就得用到Service了,又比如当我们一个应用的数据是通过网络获取的,不同时间(一段时间)的数据是不同的这时候我们可以用Service在后台定时更新,而不用每打开应用的时候在去获取。

Service生命周期 :

AndroID Service的生命周期并不像Activity那么复杂,它只继承了onCreate(),onStart(),onDestroy()三个方法,当我们第一次启动Service时,先后调用了onCreate(),onStart()这两个方法,当停止Service时,则执行onDestroy()方法,这里需要注意的是,如果Service已经启动了,当我们再次启动Service时,不会在执行onCreate()方法,而是直接执行onStart()方法。

Service与Activity通信:

Service后端的数据最终还是要呈现在前端Activity之上的,因为启动Service时,系统会重新开启一个新的进程,这就涉及到不同进程间通信的问题了(AIDL),当我们想获取启动的Service实例时,我们可以用到bindServiceunBindService方法,它们分别执行了Service中IBinder()和onUnbind()方法。

1、添加一个类,在MainActivity所在包之下
复制代码 代码如下:
public class LService extends Service {
 private static final String TAG = "LService";
 @OverrIDe
 public IBinder onBind(Intent intent) {
  Log.i(TAG,"onbind");
  return null;
 }
 @OverrIDe
 public voID onCreate() {
  Log.i(TAG,"oncreate");
  super.onCreate();
 }
 @OverrIDe
 public voID onStart(Intent intent,int startID) {
  Log.i(TAG,"onstart");
  super.onStart(intent,startID);
 }
 @OverrIDe
 public voID onDestroy() {
  Log.i(TAG,"ondestoty");
  super.onDestroy();
 }
 @OverrIDe
 public boolean onUnbind(Intent intent) {
  Log.i(TAG,"onubind");
  return super.onUnbind(intent);
 }
 public String getSystemTime() {
  Time t = new Time();
  t.setToNow();
  return t.toString();
 }
 public class LBinder extends Binder {
  LService getService() {
   return LService.this;
  }
 }
}



 2、在程序界面文件中添加控件
复制代码 代码如下:
<TextVIEw
androID:ID="@+ID/text"
androID:layout_wIDth="fill_parent"
androID:layout_height="wrap_content"
androID:text="wecclome to livingstone's bolg" />

<button
androID:ID="@+ID/startservice"
androID:layout_wIDth="fill_parent"
androID:layout_height="wrap_content"
androID:text="startService" />

<button
androID:ID="@+ID/stopservice"
androID:layout_wIDth="fill_parent"
androID:layout_height="wrap_content"
androID:text="stopService" />

<button
androID:ID="@+ID/bindservice"
androID:layout_wIDth="fill_parent"
androID:layout_height="wrap_content"
androID:text="bindService" />

<button
androID:ID="@+ID/unbindservice"
androID:layout_wIDth="fill_parent"
androID:layout_height="wrap_content"
androID:text="unbindService" />


3、修改MainActivity中的方法,以及让MainActivity类实现OnClickListener接口
复制代码 代码如下:
public class MainActivity extends Activity implements OnClickListener {
 private LService mLService;
 private TextVIEw mTextVIEw;
 private button startServicebutton;
 private button stopServicebutton;
 private button bindServicebutton;
 private button unbindServicebutton;
 private Context mContext;
 // 这里需要用到ServiceConnection,在Context.bindService和context.unBindService()里用到
 private ServiceConnection mServiceConnection = new ServiceConnection() {
  // 当bindService时,让TextVIEw显示LService里getSystemTime()方法的返回值
  @OverrIDe
  public voID onServiceConnected(Componentname name,IBinder service) {
   mLService = ((LService.LBinder) service).getService();
   mTextVIEw.setText("I am from Service :" + mLService.getSystemTime());
  }
  public voID onServicedisconnected(Componentname name) {
  }
 };
 public voID setupVIEws() {
  mContext = MainActivity.this;
  mTextVIEw = (TextVIEw) findVIEwByID(R.ID.text);

  startServicebutton = (button) findVIEwByID(R.ID.startservice);
  stopServicebutton = (button) findVIEwByID(R.ID.stopservice);
  bindServicebutton = (button) findVIEwByID(R.ID.bindservice);
  unbindServicebutton = (button) findVIEwByID(R.ID.unbindservice);

  startServicebutton.setonClickListener(this);
  stopServicebutton.setonClickListener(this);
  bindServicebutton.setonClickListener(this);
  unbindServicebutton.setonClickListener(this);
 }
 @OverrIDe
 protected voID onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentVIEw(R.layout.activity_main);
  setupVIEws();
 }
 @OverrIDe
 public voID onClick(VIEw v) {
  if (v == startServicebutton) {
   Intent i = new Intent(MainActivity.this,LService.class);
   mContext.startService(i);
  } else if (v == stopServicebutton) {
   Intent i = new Intent(MainActivity.this,LService.class);
   mContext.stopService(i);
  } else if (v == bindServicebutton) {
   Intent i = new Intent(MainActivity.this,LService.class);
   mContext.bindService(i,mServiceConnection,BIND_auto_CREATE);
  } else {
   mContext.unbindService(mServiceConnection);
  }
 }
}


4、注册Service

<service
  androID:name=".LService"
  androID:exported="true" >
</service>

5、运行程序

程序界面

点击startService

此时调用程序设置里面可以看到Running Service有一个LService

点击stopService

点击bindService

此时Service已经被关闭

点击unbindService

先点击startService,再依次点击bindService和unbindService

总结

以上是内存溢出为你收集整理的基于Android Service 生命周期的详细介绍全部内容,希望文章能够帮你解决基于Android Service 生命周期的详细介绍所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1141172.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存