xamarin android 邮件,通知 – 在基于Xamarin表单的应用程序中将数据从Android服务传递到ContentPage...

本文介绍了如何使用C#通过依赖服务在PCL和Android项目之间实现位置更新事件的通信。主要涉及接口定义、依赖服务的Android实现、ContentPage的事件订阅以及后台服务的创建,确保位置变化时服务能通知到用户界面。
摘要由CSDN通过智能技术生成

这可以通过C#的概念来实现

>依赖服务

>活动

需要有4个类来实现这样的实现:

> PCL中的接口(例如,CurrentLocationService.cs),其中定义了事件处理程序.

namespace NAMESPACE

{

public interface CurrentLocationService

{

void start();

event EventHandler positionChanged;

}

}

>使用依赖关系服务在xxx.Droid项目(例如CurrentLocationService_Android.cs)中实现PCL的接口

class CurrentLocationService_Android : CurrentLocationService

{

public static CurrentLocationService_Android mySelf;

public event EventHandler positionChanged;

public void start()

{

mySelf = this;

Forms.Context.StartService(new Intent(Forms.Context, typeof(MyService)));

}

public void receivedNewPosition(CustomPosition pos)

{

positionChanged(this, new PositionEventArgs(pos));

}

}

> PCL中的ContentPage – 它将具有接口实现的对象.

对象可以通过获得

public CurrentLocationService LocationService

{

get

{

if(currentLocationService == null)

{

currentLocationService = DependencyService.Get();

currentLocationService.positionChanged += OnPositionChange;

}

return currentLocationService;

}

}

private void OnPositionChange(object sender, PositionEventArgs e)

{

Debug.WriteLine("Got the update in ContentPage from service ");

}

> xxx.Droid项目中的后台服务.此服务将引用依赖服务CurrentLocationService.cs的实现

[Service]

public class MyService : Service

{

public string TAG = "MyService";

public override IBinder OnBind(Intent intent)

{

throw new NotImplementedException();

}

public override StartCommandResult OnStartCommand(Android.Content.Intent intent, StartCommandFlags flags, int startId)

{

Log.Debug(TAG, TAG + " started");

doWork();

return StartCommandResult.Sticky;

}

public void doWork()

{

var t = new Thread(

() =>

{

Log.Debug(TAG, "Doing work");

Thread.Sleep(10000);

Log.Debug(TAG, "Work completed");

if(CurrentLocationService_Android.mySelf != null)

{

CustomPosition pos = new CustomPosition();

pos.update = "Finally value is updated";

CurrentLocationService_Android.mySelf.receivedNewPosition(pos);

}

StopSelf();

});

t.Start();

}

}

注意:需要根据用法创建PositionEventArgs类,以在服务和ContentPage之间传递数据.

这对我来说就像魅力一样.

希望这对你有所帮助.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值