private void ReadIntentExtras() { GameLevel = GameLevelOperation.GetGameLevel(Intent.Extras.GetString("GameLevel")); Language = Intent.Extras.GetString("Language"); DictionaryGameOverResultGameLevel.Text = String.Format("Level : {0}", GameLevel); DictionaryGameOverResultLanguage.Text = String.Format("Language : {0}", Language); DictionaryGameOverResultTryCount.Text = String.Format("Try Count : {0}", GameResultCalculation.TryCount); DictionaryGameOverResultSuccessCount.Text = String.Format("Sucess Count: {0}", GameResultCalculation.SuccessCount); DictionaryGameOverResultSuccessPercentage.Text = String.Format("Sucess : % {0}", GameResultCalculation.SuccessPercentage); DictionaryGameOverResultSuccessTime.Text = String.Format("Elapsed : {0} Second", GameResultCalculation.ElapsedStropWatch.ElapsedMilliseconds / 1000); }
private void ReadIntentExtras() { GameLevel = GameLevelOperation.GetGameLevel(Intent.Extras.GetString("GameLevel")); Language = Intent.Extras.GetString("Language"); }