上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
摘要: public class DeviceMacUtil { /** * Android 6.0 之前(不包括6.0) * 必须的权限 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> * @param con 阅读全文
posted @ 2020-05-09 10:43 青竹玉简 阅读(608) 评论(0) 推荐(0) 编辑
摘要: public class RegexUtils { /** * 验证Email * @param email email地址,格式:zhangsan@sina.com,zhangsan@xxx.com.cn,xxx代表邮件服务商 * @return 验证成功返回true,验证失败返回false */ 阅读全文
posted @ 2020-05-09 10:42 青竹玉简 阅读(175) 评论(0) 推荐(0) 编辑
摘要: public class SharedPreferencesUtil { private static SharedPreferencesUtil util; private static SharedPreferences sp; private SharedPreferencesUtil(Con 阅读全文
posted @ 2020-05-09 10:40 青竹玉简 阅读(814) 评论(0) 推荐(0) 编辑
摘要: ViewUtils public class ViewUtils { /** * @Author AlanMa * @Description 处理图形大小 * @Date 2020/4/14 * @Param [editTextList] * @return void */ public stati 阅读全文
posted @ 2020-05-09 10:39 青竹玉简 阅读(765) 评论(0) 推荐(0) 编辑
摘要: CountDownTimerUtils public class CountDownTimerUtils extends CountDownTimer { private TextView mTextView; public CountDownTimerUtils(TextView textView 阅读全文
posted @ 2020-05-09 10:38 青竹玉简 阅读(177) 评论(0) 推荐(0) 编辑
摘要: EditTextUtils public class EditTextUtils { /** * 设置edittext只能输入小数点后两位 */ public static void afterDotOne(final EditText editText) { editText.addTextCha 阅读全文
posted @ 2020-05-09 10:36 青竹玉简 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 项目中有这种需求,google了下发现了解决方案,摘录如下方便大家排查. 原文链接 原理是利用selector 第一步 在drawable文件夹下建立文件 tab_background.xml <?xml version="1.0" encoding="utf-8"?> <selector xmln 阅读全文
posted @ 2020-04-22 22:13 青竹玉简 阅读(2641) 评论(0) 推荐(0) 编辑
摘要: if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PERMISSION_GRANTED) {//判断是否已经赋予权限 if (ActivityCompat.should 阅读全文
posted @ 2020-04-19 22:58 青竹玉简 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-13 20:38 青竹玉简 阅读(1003) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页