CommonUtilLibrary
CommonUtilLibrary copied to clipboard
快速开发工具类收集,史上最全的开发工具类,欢迎Follow、Fork、Star
isPhone
199开头的手机号不合法?
/** * 提供(相对)精确的除法运算。当发生除不尽的情况时,由scale参数指 * 定精度,以后的数字四舍五入 * * @param v1 被除数 * @param v2 除数 * @param scale 表示需要精确到小数点以后几位 * @return 两个参数的商 */ public static String divide(String v1, String v2, int...
能不能适配7.0 8.0的一些权限的东西 8.0 安装应用什么的都改了权限了
目前我试过有效的方法是监听软键盘弹出时引起的根布局高度的变化,当其变化值大于屏幕高度的三分之一时,即视为软键盘弹出。 ``` llRoot.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void onGlobalLayout() { Rect rect = new Rect(); llRoot.getWindowVisibleDisplayFrame(rect); int screenHeight = ScreenUtils.getSreenHeight(context); int heightDiff = screenHeight - rect.bottom; if (heightDiff
你按住控件然后划到控件外面,那个深色背景不会重置到浅色背景
希望能加上,最好能测试一下小米6
希望能添加自定义入口