| | |
| | | public const int AppRealWidth = 1080; |
| | | |
| | | /// <summary> |
| | | /// 14 |
| | | /// </summary> |
| | | public const int TextSize = 14; |
| | | /// <summary> |
| | | /// 16 |
| | | /// </summary> |
| | | public const int TextSize_Selected = 16; |
| | | |
| | | /// <summary> |
| | | /// 字体12 |
| | | /// </summary> |
| | | public const int loginTextSize = 12; |
| | |
| | | return $"{sec}{Language.StringByID(R.MyInternationalizationString.Second)}"; |
| | | } |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 显示提示 |
| | | /// </summary> |
| | | /// <param name="r">The red component.</param> |
| | | public static void ShowTip(string msg) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | var myTip = new Tip();
|
| | | myTip.Direction = AMPopTipDirection.None;
|
| | | myTip.CloseTime = 2;
|
| | | myTip.Text = msg; |
| | | myTip.Show(Common.CommonPage.Instance); |
| | | }); |
| | | } |
| | | } |
| | | } |