using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace App1
{
public partial class Page1 : ContentPage
{
public Page1()
{
InitializeComponent();
}
void OnButton_Clicked(object sender, EventArgs args)
{
/* code to vibrate */
}
}
}
答案 0 :(得分:1)
我自己没有对此进行测试,但最简单的解决方案是使用已经开发的组件CrossVibrate。
通常,您只需创建一个抽象(接口)并为每个操作系统实现它。该组件为您处理此问题。