Example #1
0
        private void BtnSkipNext_LongClick(object sender, View.LongClickEventArgs e)
        {
            bool isNotKitkat = Build.VERSION.SdkInt > BuildVersionCodes.KitkatWatch;

            if (isNotKitkat)
            {
                Jukebox.FastFoward();
            }
            else
            {
                JukeboxKitkat.FastFoward();
            }
        }
 private void BtnSkipNext_LongClick(object sender, View.LongClickEventArgs e)
 {
     Jukebox.FastFoward();
 }