Có một giải pháp đơn giản cho điều này. Bằng cách sử dụng DependencyService, bạn có thể dễ dàng có được cách tiếp cận Toast-Like trong cả Android và iOS.
Tạo một giao diện trong gói chung của bạn.
public interface IMessage
{
void LongAlert(string message);
void ShortAlert(string message);
}
Phần Android
[assembly: Xamarin.Forms.Dependency(typeof(MessageAndroid))]
namespace Your.Namespace
{
public class MessageAndroid : IMessage
{
public void LongAlert(string message)
{
Toast.MakeText(Application.Context, message, ToastLength.Long).Show();
}
public void ShortAlert(string message)
{
Toast.MakeText(Application.Context, message, ToastLength.Short).Show();
}
}
}
phần iOS
Trong iOs không có giải pháp gốc nào như Toast, vì vậy chúng tôi cần triển khai cách tiếp cận của riêng mình.
[assembly: Xamarin.Forms.Dependency(typeof(MessageIOS))]
namespace Bahwan.iOS
{
public class MessageIOS : IMessage
{
const double LONG_DELAY = 3.5;
const double SHORT_DELAY = 2.0;
NSTimer alertDelay;
UIAlertController alert;
public void LongAlert(string message)
{
ShowAlert(message, LONG_DELAY);
}
public void ShortAlert(string message)
{
ShowAlert(message, SHORT_DELAY);
}
void ShowAlert(string message, double seconds)
{
alertDelay = NSTimer.CreateScheduledTimer(seconds, (obj) =>
{
dismissMessage();
});
alert = UIAlertController.Create(null, message, UIAlertControllerStyle.Alert);
UIApplication.SharedApplication.KeyWindow.RootViewController.PresentViewController(alert, true, null);
}
void dismissMessage()
{
if (alert != null)
{
alert.DismissViewController(true, null);
}
if (alertDelay != null)
{
alertDelay.Dispose();
}
}
}
}
Xin lưu ý rằng trong mỗi nền tảng, chúng tôi phải đăng ký các lớp học của mình với DependencyService.
Bây giờ bạn có thể truy cập dịch vụ Toast ở bất kỳ đâu trong dự án của chúng tôi.
DependencyService.Get<IMessage>().ShortAlert(string message);
DependencyService.Get<IMessage>().LongAlert(string message);