发布:2021/10/14 14:42:06作者:管理员 来源:本站 浏览次数:1015
一、前言
学习了前面的活动与服务后,你会发现服务对于活动而言似乎就是透明的,相反活动对于服务也是透明的,所以我们还需要一中机制能够将服务和活动之间架起一座桥梁,通过本节的学习,你将会学到广播与绑定服务,这两种方式恰恰是解决上面问题的关键。
二、简单的广播接收器
实现一个最简单的广播接收器需要继承BroadcastReceiver类,并且还要实现OnReceive方法,我们可以在项目中新建一个MainReceiver类,然后写入如下代码:
复制代码
1 public class MainReceiver : BroadcastReceiver
2 {
3 public override void OnReceive(Context context, Intent intent)
4 {
5
6 }
7 }
复制代码
上面其实已经实现了一个简单的广播接收器,并且可以使用。我们还需要注册广播接收器,否则广播接收器就无法接收广播,所以我们需要在MainActivity.cs中注册这个广播接收器。当然为了能够接近现实,我们需要在OnResume中注册,在OnPause中注销。
首先我们在OnResume中注册
复制代码
1 protected override void OnResume()
2 {
3 base.OnResume();
4 receiver = new MainReceiver();
5 RegisterReceiver(receiver, new IntentFilter("xamarin-cn.main.receiver"));
6 }
复制代码
接着我们在OnPause中注销
1 protected override void OnPause()
2 {
3 base.OnPause();
4 UnregisterReceiver(receiver);
5 }
全部代码如下所示
复制代码
1 [Activity(Label = "BroadcastStudy", MainLauncher = true, Icon = "@drawable/icon")]
2 public class MainActivity : Activity
3 {
4 private MainReceiver receiver;
5
6 protected override void OnCreate(Bundle bundle)
7 {
8 base.OnCreate(bundle);
9 SetContentView(Resource.Layout.Main);
10 }
11
12 protected override void OnResume()
13 {
14 base.OnResume();
15 receiver = new MainReceiver();
16 RegisterReceiver(receiver, new IntentFilter("xamarin-cn.main.receiver"));
17 }
18
19 protected override void OnPause()
20 {
21 base.OnPause();
22 UnregisterReceiver(receiver);
23 }
24 }
复制代码
注册好了广播接收器,我们还需要一个能够发送广播的地方,既然我们说了这节重点解决的是服务与活动的通信,那么我们就实现一个服务来发送广播。为了能够贴近现实,我们的服务中将会新建一个线程,让这个线程发送一个广播给这个广播接收器。
复制代码
1 [Service]
2 public class MainService : Service
3 {
4 public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, int startId)
5 {
6 new Thread(() =>
7 {
8 Thread.Sleep(1000);
9 var sintent = new Intent("xamarin-cn.main.receiver");
10 sintent.PutExtra("_str", "来自服务");
11 SendBroadcast(sintent);
12 }).Start();
13 return StartCommandResult.Sticky;
14 }
15
16 public override IBinder OnBind(Intent intent)
17 {
18 return null;
19 }
20 }
复制代码
这里我们通过意图传递了一个参数,而在服务中发送广播的方法是SendBroadcast。其实我们可以看到在创建意图的时候传入了一个字符串,而这个字符串必须与注册广播接收器时指定的字符串一致,否则对应的广播接收器是无法接收到这个广播的,下面我们修改广播接收器的OnReceive方法,以便获取传递过来的字符串并显示。
复制代码
1 public override void OnReceive(Context context, Intent intent)
2 {
3 string str = intent.GetStringExtra("_str");
4 new Handler().Post(() =>
5 {
6 Toast.MakeText(Application.Context, str, ToastLength.Long).Show();
7 });
8 }
复制代码
其中我们通过意图的GetXXXX方法获取传递过来的参数,然后创建了一个Handler对象并使用Toast发送了一个提示,这里使用Handler是为了与UI线程同步。因为前面讲过只用UI线程才能够访问控件等等对象,而这里并没有RunOnUiThread方法,所以我们需要使用Handler对象的Post方法来实现。
最后有了服务还不行,我们还需要开启这个服务。当然我们依然还是要在OnResume中开启,在OnPause中暂停。
复制代码
1 protected override void OnResume()
2 {
3 base.OnResume();
4 receiver = new MainReceiver();
5 RegisterReceiver(receiver, new IntentFilter("xamarin-cn.main.receiver"));
6 StartService(new Intent(this, typeof(MainService)));
7 }
8
9 protected override void OnPause()
10 {
11 base.OnPause();
12 UnregisterReceiver(receiver);
13 StopService(new Intent(this, typeof(MainService)));
14 }
复制代码
最后我们运行之后的结果如下所示
三、服务向活动发送消息
上面的例子我们仅仅只是打通了服务与广播接收器的通信,而我们今天的主题是服务与活动的双向通信,但是为了能够循序渐进学习,所以我们先学习了服务与广播接收器怎么通信,而这节我们将学习广播接收器如何与活动通信。
因为c#并没有java的部分语言的特性,所以我们没法直接通过匿名的方法创建一个继承自BroadcastReceiver类的实例,所以我们需要先创建一个继承自BroadcastReceiver的具体类,然后在其中定义活动需要响应的方法的委托(Action或者Func),这样我们可以在实例化这个具体类的同时将活动中的方法赋给广播接收器,这样广播接收器在OnReceive中就可以调用活动中的方法了,自然而言就打通了广播接收器与活动的通信。当然还有其他的方法,希望读者可以在留言中留下,以便更多的人进行学习。
首先修改MainReceiver类:
复制代码
1 public class MainReceiver : BroadcastReceiver
2 {
3 public Action<string> Alert;
4
5 public override void OnReceive(Context context, Intent intent)
6 {
7 string str = intent.GetStringExtra("_str");
8 if (Alert != null)
9 {
10 Alert(str);
11 }
12 }
13 }
复制代码
在这里我们定义了一个委托(Action<string> Alert)以便活动可以重写,同时还修改了OnReceive中的代码,从而使用活动的方法来显示提示,有了接口之后,我们就可以回到活动中进行重写了。因为广播被实例化的步骤是在OnResume中,所以我们这里直接给出这个方法中的代码(这里我们使用了一个TextView控件tv读者可以需要自行添加下)。
复制代码
1 protected override void OnResume()
2 {
3 base.OnResume();
4 receiver = new MainReceiver()
5 {
6 Alert = (s) =>
7 {
8 RunOnUiThread(() =>
9 {
10 tv.Text = s;
11 });
12 }
13 };
14 RegisterReceiver(receiver, new IntentFilter("xamarin-cn.main.receiver"));
15 StartService(new Intent(this, typeof(MainService)));
16 }
复制代码
现在我们就打通了广播接收器与活动的桥梁,如果有多个方法也是一样的道理,我们现在运行程序可以发现一切正常,下面笔者还要介绍另一种使用接口的方法,首先我们需要一个接口去规定活动需要实现哪些方法,然后在初始化广播接收器的同时将活动的实例赋广播接收器的对应接口变量。下面我们将上面的例子改写,先定义个含有Alert的接口。
1 public interface IMainInterface
2 {
3 void Alert(string s);
4 }
然后让活动实现该接口
复制代码
public class MainActivity : Activity, IMainInterface
{
private MainReceiver receiver;
private TextView tv;
public void Alert(string s)
{
RunOnUiThread(() =>
{
tv.Text = s;
});
}
复制代码
接着我们修改广播接收器,公开一个该接收的属性,一遍在广播接收器被初始化的时候可以复制。
复制代码
1 public class MainReceiver : BroadcastReceiver
2 {
3 public IMainInterface mainInterface;
4
5 public override void OnReceive(Context context, Intent intent)
6 {
7 string str = intent.GetStringExtra("_str");
8 if (mainInterface != null)
9 {
10 mainInterface.Alert(str);
11 }
12 }
13 }
复制代码
回到MainActivity中修改OnResume方法。
复制代码
1 protected override void OnResume()
2 {
3 base.OnResume();
4 receiver = new MainReceiver()
5 {
6 mainInterface = this
7 };
8 RegisterReceiver(receiver, new IntentFilter("xamarin-cn.main.receiver"));
9 StartService(new Intent(this, typeof(MainService)));
10 }
复制代码
最后效果一样的,读者可以根据实际的情况选择。毕竟他们各自都有或多或少的缺点。
四、绑定服务
其实绑定服务就是将服务中的功能公开给活动,只有这样活动才能调用服务中的方法。而这一过程需要经过一个绑定。首先我们需要一个继承自Binder的类,这样才能将服务通过接口传递给活动。以下为继承自Binder的类,其中我们需要在初始化时将服务传入,然后公开一个方法将服务的实例返回。
复制代码
1 public class MainBinder : Binder
2 {
3 MainService mainService;
4
5 public MainBinder(MainService ms)
6 {
7 mainService = ms;
8 }
9
10 public MainService GetService()
11 {
12 return mainService;
13 }
14 }
复制代码
接下来我们打开MainService文件,实现OnBind方法,并将上面类返回。
复制代码
1 [Service]
2 public class MainService : Service
3 {
4 public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, int startId)
5 {
6 return StartCommandResult.Sticky;
7 }
8
9 public override IBinder OnBind(Intent intent)
10 {
11 return new MainBinder(this);
12 }
13 }
复制代码
到此为止,服务这边已经做好了准备。既然是绑定自然不能通过简单的StartService方法开启,因为我们还需要OnBind返回的接口,否则活动无法与服务沟通。这就需要在活动中通过BindService方法进行绑定,但是该方法还需要一个实现了IserviceConnection接口的类,因为通过BindService方法进行绑定的操作是异步的,也就意味着不会阻塞当前调用该方法的线程,而是在服务成功开启并并且OnBind方法返回接口后会回调IserviceConnection中的方法,我们可以看下该接口的方法。
1 public interface IServiceConnection : IJavaObject, IDisposable
2 {
3 void OnServiceConnected(ComponentName name, IBinder service);
4 void OnServiceDisconnected(ComponentName name);
5 }
关于接口的方法,大致的解释如下:
OnServiceConnected:当服务中的OnBind方法返回接口后将回调该方法,并且通过service参数将OnBind返回的值传递给这个方法。
OnServiceDisconnected:当服务被关闭或者主动断开连接后回调该方法,如果我们利用这个方法重新恢复连接,或者发出异常并关闭对应的活动。
下面我们实现该接口
复制代码
1 public class MainServiceConnection : Java.Lang.Object , IServiceConnection
2 {
3 public void OnServiceConnected(ComponentName name, Android.OS.IBinder service)
4 {
5
6 }
7
8 public void OnServiceDisconnected(ComponentName name)
9 {
10
11 }
12 }
复制代码
这里我们没有实现任何代码,该类与活动还没有关联起来,所以我们需要在活动中新建一个公开的变量去保存服务的接口。
复制代码
1 [Activity(Label = "BroadcastStudy", MainLauncher = true, Icon = "@drawable/icon")]
2 public class MainActivity : Activity
3 {
4 private TextView tv;
5 public MainBinder mainBinder;
复制代码
接着我们就可以实现MainServiceConnection类了。
复制代码
1 public class MainServiceConnection : Java.Lang.Object , IServiceConnection
2 {
3 MainActivity mainActivity;
4 public MainServiceConnection(MainActivity ma)
5 {
6 mainActivity = ma;
7 }
8
9 public void OnServiceConnected(ComponentName name, Android.OS.IBinder service)
10 {
11 mainActivity.mainBinder = (MainBinder)service;
12 }
13
14 public void OnServiceDisconnected(ComponentName name)
15 {
16 mainActivity.mainBinder = null;
17 }
18 }
复制代码
最后我们在活动中就可以进行绑定了。
复制代码
1 [Activity(Label = "BroadcastStudy", MainLauncher = true, Icon = "@drawable/icon")]
2 public class MainActivity : Activity
3 {
4 private IServiceConnection serviceConnection;
5 private TextView tv;
6 public MainBinder mainBinder;
7
8
9 protected override void OnCreate(Bundle bundle)
10 {
11 base.OnCreate(bundle);
12 SetContentView(Resource.Layout.Main);
13 tv = FindViewById<TextView>(Resource.Id.textView1);
14 }
15
16 protected override void OnResume()
17 {
18 base.OnResume();
19 serviceConnection = new MainServiceConnection(this);
20 BindService(new Intent(this, typeof(MainService)), serviceConnection, Bind.AutoCreate);
21 }
22
23 protected override void OnPause()
24 {
25 base.OnPause();
26 UnbindService(serviceConnection);
27 }
28 }
复制代码
通过上面的步骤我们还不能看到实际的效果,下面我们需要在服务中实现一个简单的方法,只是返回一段字符串。
1 public string GetString()
2 {
3 return "来自服务";
4 }
然后在Main.axml中拖放一个按钮,并在活动中进行绑定。
复制代码
1 protected override void OnCreate(Bundle bundle)
2 {
3 base.OnCreate(bundle);
4 SetContentView(Resource.Layout.Main);
5 Button btn = FindViewById<Button>(Resource.Id.button1);
6 btn.Click += (e, s) =>
7 {
8 if (mainBinder != null)
9 {
10 string str = mainBinder.GetService().GetString();
11 Toast.MakeText(this, str, ToastLength.Long).Show();
12 }
13 };
14 }
复制代码
这样我们就完成了活动调用服务中的方法,但是现实开发中。如果是耗时的任务。都是活动调用服务公开的方法后立即返回,然后服务在完成之后通过广播将处理的结果返回给活动,整个过程都是异步的。
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4