private static void ManuallyEnterIP()
        {
            object[] args = null;
#if ANDROID
            args = new object[] { Android.Text.InputTypes.ClassPhone };
#endif
            PlatformFunctions.OpenInputDialog("Enter Roku IP Address", ButtonManuallyEnterIP.ParseIPText, 0, args);
        }
Exemplo n.º 2
0
 private static void SetName()
 {
     PlatformFunctions.OpenInputDialog("Enter Name", result => Settings.PlayerName = result.Trim(), Settings.MaxNameLength);
 }