Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// <summary>
- /// Zobrazí zvětšenou toast notifikaci (nahoře uprostřed obrazovky)
- /// - volání: Operations.ShowToast(Engine.Lang.Get("msg_delivered"));
- /// </summary>
- public static void ShowToast(string text)
- {
- // Vytvoří, zvětší toast, zobrazí ho
- var toast = Toast.MakeText(Application.Context, text, ToastLength.Long);
- LinearLayout toastLayout = (LinearLayout)toast.View;
- TextView toastTV = (TextView)toastLayout.GetChildAt(0);
- toastTV.SetTextSize(ComplexUnitType.Dip, 30);
- toast.SetGravity(GravityFlags.CenterHorizontal, 0, -100);
- toast.Show();
- }
Advertisement
Add Comment
Please, Sign In to add comment