public static void Popup(string title, string message)
        {
            NpDeviceInfoAndroid.Popup(title, message);
            Thread thread = new Thread(delegate()
            {
                NpDeviceInfo.executeGetCancelKey();
            });

            thread.Start();
        }