DependecyService คือ คลาสที่ระบุตำแหน่งของบริการ ที่สามารถให้ แอพพลิเคชั่นของ Xamarin.Forms เรียกใช้ ฟังก์ชันต่างๆจาก Native Platform โดยโค๊ดที่ถูกแชร์
กระบวนการเรียกใช้ทำได้ดังนี้
1.สร้าง interface สำหรับ Native Platform ใน Shared Code ซึ่งจะเป็นการระบุ Api ในการ interact กับ Native Platform การสร้าง interface จะทำใน Share Project
public interface IDeviceOrientationService { DeviceOrientation GetOrientation(); }
จากตัวอย่าง เป็น interface ที่มี method ชื่อ GetOrientation ดึงข้อมูลรูปแบบการวาง
2.ทำการ implement interface ใน Project Platform (ในการ implement ของแต่ละ platform จะต่างกัน เพราะมี class library ที่เรียกใช้ต่างกันจึงต้องแยกกัน implement)
iOS
namespace DependencyServiceDemos.iOS { public class DeviceOrientationService : IDeviceOrientationService { public DeviceOrientation GetOrientation() { UIInterfaceOrientation orientation = UIApplication.SharedApplication.StatusBarOrientation; bool isPortrait = orientation == UIInterfaceOrientation.Portrait || orientation == UIInterfaceOrientation.PortraitUpsideDown; return isPortrait ? DeviceOrientation.Portrait : DeviceOrientation.Landscape; } } }
Android
namespace DependencyServiceDemos.Droid { public class DeviceOrientationService : IDeviceOrientationService { public DeviceOrientation GetOrientation() { IWindowManager windowManager = Android.App.Application.Context.GetSystemService(Context.WindowService).JavaCast(); SurfaceOrientation orientation = windowManager.DefaultDisplay.Rotation; bool isLandscape = orientation == SurfaceOrientation.Rotation90 || orientation == SurfaceOrientation.Rotation270; return isLandscape ? DeviceOrientation.Landscape : DeviceOrientation.Portrait; } } }
3.หลังจากที่ implement ในแต่ละ platform แล้ว ทำการลงทะเบียนการ implement ในแต่ละ platform ด้วย DependencyService ซึ่งจะทำให้ Xamarin.Forms รู้ตำแหน่งในการ implement ในแต่ละ Platform ขณะ runtime โดยใช้ DependencyAttribute แล้วระบุ type of ป็น class ที่ implement interface
iOS
using Xamarin.Forms; [assembly: Dependency(typeof(DeviceOrientationService))] namespace DependencyServiceDemos.iOS { public class DeviceOrientationService : IDeviceOrientationService { public DeviceOrientation GetOrientation() { ... } } }
จากตัวอย่างมีการ ระบุ DependencyAttributeใน iOS Project
4.ตัดสินใจ implement ในแต่ละ platform จากตัว shared code
IDeviceOrientationService service = DependencyService.Get<ideviceorientationservice>(); DeviceOrientation orientation = service.GetOrientation();