文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android中Service与Activity之间通信的几种方式

2022-06-06 04:30

关注

在Android中,Activity主要负责前台页面的展示,Service主要负责需要长期运行的任务,所以在我们实际开发中,就会常常遇到Activity与Service之间的通信,我们一般在Activity中启动后台Service,通过Intent来启动,Intent中我们可以传递数据给Service,而当我们Service执行某些操作之后想要更新UI线程,我们应该怎么做呢?接下来我就介绍两种方式来实现Service与Activity之间的通信问题

1、通过Binder对象

当Activity通过调用bindService(Intent service, ServiceConnection conn,int flags),我们可以得到一个Service的一个对象实例,然后我们就可以访问Service中的方法,我们还是通过一个例子来理解一下吧,一个模拟下载的小例子,带大家理解一下通过Binder通信的方式

首先我们新建一个工程Communication,然后新建一个Service类


package com.example.communication; 
import android.app.Service; 
import android.content.Intent; 
import android.os.Binder; 
import android.os.IBinder; 
public class MsgService extends Service { 
  
 public static final int MAX_PROGRESS = 100; 
  
 private int progress = 0; 
  
 public int getProgress() { 
  return progress; 
 } 
  
 public void startDownLoad(){ 
  new Thread(new Runnable() { 
   @Override 
   public void run() { 
    while(progress < MAX_PROGRESS){ 
     progress += 5; 
     try { 
      Thread.sleep(1000); 
     } catch (InterruptedException e) { 
      e.printStackTrace(); 
     } 
    } 
   } 
  }).start(); 
 } 
  
 @Override 
 public IBinder onBind(Intent intent) { 
  return new MsgBinder(); 
 } 
 public class MsgBinder extends Binder{ 
   
  public MsgService getService(){ 
   return MsgService.this; 
  } 
 } 
}

上面的代码比较简单,注释也比较详细,最基本的Service的应用了,相信你看得懂的,我们调用startDownLoad()方法来模拟下载任务,然后每秒更新一次进度,但这是在后台进行中,我们是看不到的,所以有时候我们需要他能在前台显示下载的进度问题,所以我们接下来就用到Activity了


Intent intent = new Intent("com.example.communication.MSG_ACTION"); 
bindService(intent, conn, Context.BIND_AUTO_CREATE); 

通过上面的代码我们就在Activity绑定了一个Service,上面需要一个ServiceConnection对象,它是一个接口,我们这里使用了匿名内部类


ServiceConnection conn = new ServiceConnection() { 
  @Override 
  public void onServiceDisconnected(ComponentName name) { 
  } 
  @Override 
  public void onServiceConnected(ComponentName name, IBinder service) { 
   //返回一个MsgService对象 
   msgService = ((MsgService.MsgBinder)service).getService(); 
  } 
 };

在onServiceConnected(ComponentName name, IBinder service) 回调方法中,返回了一个MsgService中的Binder对象,我们可以通过getService()方法来得到一个MsgService对象,然后可以调用MsgService中的一些方法,Activity的代码如下


package com.example.communication; 
import android.app.Activity; 
import android.content.ComponentName; 
import android.content.Context; 
import android.content.Intent; 
import android.content.ServiceConnection; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.ProgressBar; 
public class MainActivity extends Activity { 
 private MsgService msgService; 
 private int progress = 0; 
 private ProgressBar mProgressBar; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  //绑定Service 
  Intent intent = new Intent("com.example.communication.MSG_ACTION"); 
  bindService(intent, conn, Context.BIND_AUTO_CREATE); 
  mProgressBar = (ProgressBar) findViewById(R.id.progressBar1); 
  Button mButton = (Button) findViewById(R.id.button1); 
  mButton.setOnClickListener(new OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    //开始下载 
    msgService.startDownLoad(); 
    //监听进度 
    listenProgress(); 
   } 
  }); 
 } 
  
 public void listenProgress(){ 
  new Thread(new Runnable() { 
   @Override 
   public void run() { 
    while(progress < MsgService.MAX_PROGRESS){ 
     progress = msgService.getProgress(); 
     mProgressBar.setProgress(progress); 
     try { 
      Thread.sleep(1000); 
     } catch (InterruptedException e) { 
      e.printStackTrace(); 
     } 
    } 
   } 
  }).start(); 
 } 
 ServiceConnection conn = new ServiceConnection() { 
  @Override 
  public void onServiceDisconnected(ComponentName name) { 
  } 
  @Override 
  public void onServiceConnected(ComponentName name, IBinder service) { 
   //返回一个MsgService对象 
   msgService = ((MsgService.MsgBinder)service).getService(); 
  } 
 }; 
 @Override 
 protected void onDestroy() { 
  unbindService(conn); 
  super.onDestroy(); 
 } 
} 

其实上面的代码我还是有点疑问,就是监听进度变化的那个方法我是直接在线程中更新UI的,不是说不能在其他线程更新UI操作吗,可能是ProgressBar比较特殊吧,我也没去研究它的源码,知道的朋友可以告诉我一声,谢谢!

上面的代码就完成了在Service更新UI的操作,可是你发现了没有,我们每次都要主动调用getProgress()来获取进度值,然后隔一秒在调用一次getProgress()方法,你会不会觉得很被动呢?可不可以有一种方法当Service中进度发生变化主动通知Activity,答案是肯定的,我们可以利用回调接口实现Service的主动通知,不理解回调方法的可以看

//www.jb51.net/article/95523.htm

新建一个回调接口


public interface OnProgressListener { 
 void onProgress(int progress); 
} 

MsgService的代码有一些小小的改变,为了方便大家看懂,我还是将所有代码贴出来


package com.example.communication; 
import android.app.Service; 
import android.content.Intent; 
import android.os.Binder; 
import android.os.IBinder; 
public class MsgService extends Service { 
  
 public static final int MAX_PROGRESS = 100; 
  
 private int progress = 0; 
  
 private OnProgressListener onProgressListener; 
  
 public void setOnProgressListener(OnProgressListener onProgressListener) { 
  this.onProgressListener = onProgressListener; 
 } 
  
 public int getProgress() { 
  return progress; 
 } 
  
 public void startDownLoad(){ 
  new Thread(new Runnable() { 
   @Override 
   public void run() { 
    while(progress < MAX_PROGRESS){ 
     progress += 5; 
     //进度发生变化通知调用方 
     if(onProgressListener != null){ 
      onProgressListener.onProgress(progress); 
     } 
     try { 
      Thread.sleep(1000); 
     } catch (InterruptedException e) { 
      e.printStackTrace(); 
     } 
    } 
   } 
  }).start(); 
 } 
  
 @Override 
 public IBinder onBind(Intent intent) { 
  return new MsgBinder(); 
 } 
 public class MsgBinder extends Binder{ 
   
  public MsgService getService(){ 
   return MsgService.this; 
  } 
 } 
} 

Activity中的代码如下


package com.example.communication; 
import android.app.Activity; 
import android.content.ComponentName; 
import android.content.Context; 
import android.content.Intent; 
import android.content.ServiceConnection; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.ProgressBar; 
public class MainActivity extends Activity { 
 private MsgService msgService; 
 private ProgressBar mProgressBar; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  //绑定Service 
  Intent intent = new Intent("com.example.communication.MSG_ACTION"); 
  bindService(intent, conn, Context.BIND_AUTO_CREATE); 
  mProgressBar = (ProgressBar) findViewById(R.id.progressBar1); 
  Button mButton = (Button) findViewById(R.id.button1); 
  mButton.setOnClickListener(new OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    //开始下载 
    msgService.startDownLoad(); 
   } 
  }); 
 } 
 ServiceConnection conn = new ServiceConnection() { 
  @Override 
  public void onServiceDisconnected(ComponentName name) { 
  } 
  @Override 
  public void onServiceConnected(ComponentName name, IBinder service) { 
   //返回一个MsgService对象 
   msgService = ((MsgService.MsgBinder)service).getService(); 
   //注册回调接口来接收下载进度的变化 
   msgService.setOnProgressListener(new OnProgressListener() { 
    @Override 
    public void onProgress(int progress) { 
     mProgressBar.setProgress(progress); 
    } 
   }); 
  } 
 }; 
 @Override 
 protected void onDestroy() { 
  unbindService(conn); 
  super.onDestroy(); 
 } 
} 

用回调接口是不是更加的方便呢,当进度发生变化的时候Service主动通知Activity,Activity就可以更新UI操作了

2、通过broadcast(广播)的形式

当我们的进度发生变化的时候我们发送一条广播,然后在Activity的注册广播接收器,接收到广播之后更新ProgressBar,代码如下


package com.example.communication; 
import android.app.Activity; 
import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.content.IntentFilter; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.ProgressBar; 
public class MainActivity extends Activity { 
 private ProgressBar mProgressBar; 
 private Intent mIntent; 
 private MsgReceiver msgReceiver; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  //动态注册广播接收器 
  msgReceiver = new MsgReceiver(); 
  IntentFilter intentFilter = new IntentFilter(); 
  intentFilter.addAction("com.example.communication.RECEIVER"); 
  registerReceiver(msgReceiver, intentFilter); 
  mProgressBar = (ProgressBar) findViewById(R.id.progressBar1); 
  Button mButton = (Button) findViewById(R.id.button1); 
  mButton.setOnClickListener(new OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    //启动服务 
    mIntent = new Intent("com.example.communication.MSG_ACTION"); 
    startService(mIntent); 
   } 
  }); 
 } 
 @Override 
 protected void onDestroy() { 
  //停止服务 
  stopService(mIntent); 
  //注销广播 
  unregisterReceiver(msgReceiver); 
  super.onDestroy(); 
 } 
  
 public class MsgReceiver extends BroadcastReceiver{ 
  @Override 
  public void onReceive(Context context, Intent intent) { 
   //拿到进度,更新UI 
   int progress = intent.getIntExtra("progress", 0); 
   mProgressBar.setProgress(progress); 
  } 
 } 
} 

package com.example.communication; 
import android.app.Service; 
import android.content.Intent; 
import android.os.IBinder; 
public class MsgService extends Service { 
  
 public static final int MAX_PROGRESS = 100; 
  
 private int progress = 0; 
 private Intent intent = new Intent("com.example.communication.RECEIVER"); 
  
 public void startDownLoad(){ 
  new Thread(new Runnable() { 
   @Override 
   public void run() { 
    while(progress < MAX_PROGRESS){ 
     progress += 5; 
     //发送Action为com.example.communication.RECEIVER的广播 
     intent.putExtra("progress", progress); 
     sendBroadcast(intent); 
     try { 
      Thread.sleep(1000); 
     } catch (InterruptedException e) { 
      e.printStackTrace(); 
     } 
    } 
   } 
  }).start(); 
 } 
 @Override 
 public int onStartCommand(Intent intent, int flags, int startId) { 
  startDownLoad(); 
  return super.onStartCommand(intent, flags, startId); 
 } 
 @Override 
 public IBinder onBind(Intent intent) { 
  return null; 
 } 
}

总结:

Activity调用bindService (Intent service, ServiceConnection conn, int flags)方法,得到Service对象的一个引用,这样Activity可以直接调用到Service中的方法,如果要主动通知Activity,我们可以利用回调方法  Service向Activity发送消息,可以使用广播,当然Activity要注册相应的接收器。比如Service要向多个Activity发送同样的消息的话,用这种方法就更好 您可能感兴趣的文章:Android检测Activity或者Service是否运行的方法Android中Service和Activity相互通信示例代码Android Activity与Service通信(不同进程之间)详解Android Activity 与Service进行数据交互详解浅谈Android Activity与Service的交互方式Android使用Messenger实现service与activity交互Android实现Activity、Service与Broadcaster三大组件之间互相调用的方法详解Android实现从activity中停止Service的方法Android中Service实时向Activity传递数据实例分析android使用service和activity获取屏幕尺寸的方法详解Android Service与Activity之间通信的几种方式


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯