From de564e6fd990960ea5796eadfa3b3fda7866a256 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期一, 26 十月 2020 10:53:54 +0800 Subject: [PATCH] V2.510231 1.密码规则修改,修改为:密码必须为8-20个字符,包含字母、数字和符号。 2.APP本地增加登录,密码错误锁定,连续错误5次登录锁定,锁定5分钟。 3.登录界面,增加登录账号的邮箱格式匹配检测。 --- Crabtree/ON/Application.cs | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Crabtree/ON/Application.cs b/Crabtree/ON/Application.cs index 5acedcf..ab2173c 100644 --- a/Crabtree/ON/Application.cs +++ b/Crabtree/ON/Application.cs @@ -4,6 +4,7 @@ using Android.Content; using Android.Net; using Android.OS; +using Android.Views; //using CN.Jpush.Android.Api; //using CN.Jpush.Android.Service; using Java.Lang; @@ -125,7 +126,7 @@ }; Shared.Application.FontSize = 16; - BaseActivity.IsHideVirualButtons = false; + BaseActivity.IsHideVirualButtons = true; ZXing.Mobile.MobileBarcodeScanner.Initialize (this); init (); BaseActivity.OnCreateActoin += (activity, application) => { @@ -350,5 +351,12 @@ Shared.BusSocket.Start (6000); } + void Hide () { +// Window _window; +// _window = this.GetWindow (); +// WindowManager.LayoutParams params = _window.getAttributes (); +//params.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION; +// _window.setAttributes (params); + } } } -- Gitblit v1.8.0