Android Service
Posted zhoudingzhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Service相关的知识,希望对你有一定的参考价值。
一、在MainAcitivity界面启动Service :
public class MyService extends Service
intent = new Intent(MainActivity.this,MyService.class);
startService(intent);
service 启动,先执行 MyService() 这个构造函数, 再执行 onCreate() ,然后执行 onStartCommand() 函数。
停止服务:
stopService(intent); onDestroy()
绑定服务:
bindService(intent,this, Context.BIND_AUTO_CREATE); MyService() ; onCreate(); IBinder onBind(Intent intent); onServiceConnected() ;
解除绑定:
unbindService(this); onDestroy()
以上是关于Android Service的主要内容,如果未能解决你的问题,请参考以下文章
Android 从 Service 到 Client 的通信
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段