如何在Visual Studio中的共享项目Xamarin.Forms(Portable)中使用振动服务?

时间:2015-05-13 17:52:01

标签: xamarin vibration

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 */
      }
  }
}

1 个答案:

答案 0 :(得分:1)

我自己没有对此进行测试,但最简单的解决方案是使用已经开发的组件CrossVibrate

通常,您只需创建一个抽象(接口)并为每个操作系统实现它。该组件为您处理此问题。