Ejemplo n.º 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();
            }
        }
Ejemplo n.º 2
0
 private void BtnSkipNext_LongClick(object sender, View.LongClickEventArgs e)
 {
     Jukebox.FastFoward();
 }