前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android-bind服务

Android-bind服务

作者头像
tea9
发布2022-07-16 15:54:17
3540
发布2022-07-16 15:54:17
举报
文章被收录于专栏:tea9的博客

Myservice @Override public IBinder onBind(Intent intent) { // TODO: Return the communication channel to the service. //throw new UnsupportedOperationException(“Not yet implemented”); //返回Binder要不绑定service会异常 return new Binder(); } //执行到startService中执行这个方法 @Override public int onStartCommand(Intent intent, int flags, int startId) { // new Thread(){ // @Override // public void run() { // super.run(); // while (true) { // System.out.println(“服务正在运行。。。”); // try { // sleep(1000); // } catch (InterruptedException e) { // e.printStackTrace(); // } // } // } // }.start(); return super.onStartCommand(intent, flags, startId); }

MainActivity Intent intent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); intent=new Intent(MainActivity.this,MyService.class); //启动服务 findViewById(R.id.btnStartService).setOnClickListener(this); //停止服务 findViewById(R.id.btnStopService).setOnClickListener(this); //绑定服务 findViewById(R.id.btnBindService).setOnClickListener(this); //解除绑定服务 findViewById(R.id.btnUnBindService).setOnClickListener(this); }

@Override public void onClick(View v) { switch (v.getId()){ case R.id.btnStartService: startService(intent); break; case R.id.btnStopService: stopService(intent); break; case R.id.btnBindService: //异常添加方法 bindService(intent,this, Context.BIND_AUTO_CREATE); break; case R.id.btnUnBindService: unbindService(this); break; }

} //服务绑定成功执行 @Override public void onServiceConnected(ComponentName name, IBinder service) { System.out.println(“service connected”);

} //服务崩溃的时候执行 @Override public void onServiceDisconnected(ComponentName name) { System.out.println(“service Disconnected”); }

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档