摘要: /** * Created by tab on 2020/4/30. */ public class TabLabelsView extends ViewGroup implements View.OnClickListener { private Context mContext; private 阅读全文
posted @ 2022-05-27 21:58 bg_不够 阅读(128) 评论(0) 推荐(0) 编辑
摘要: /** * 倒计时类 * * @author tab */ public class TimerDownTab extends CountDownTimer { private TimerDownListener listener; public interface TimerDownListene 阅读全文
posted @ 2022-05-27 21:51 bg_不够 阅读(99) 评论(0) 推荐(0) 编辑
摘要: /** * Created by tab on 2017/10/10 */ public class Base64Encoder extends FilterOutputStream { private static final char[] chars = {'A', 'B', 'C', 'D', 阅读全文
posted @ 2022-05-27 21:50 bg_不够 阅读(17) 评论(0) 推荐(0) 编辑
摘要: /** * 身份证验证 * Created by tab on 2019/04/04 */ public class IdCardUtil { private String idCardNum = null; private static int IS_EMPTY = 1; private stat 阅读全文
posted @ 2022-05-27 21:41 bg_不够 阅读(58) 评论(0) 推荐(0) 编辑
摘要: /** * 软键盘操作类 * 功能描述: * 1、打开软键盘 showSoftInput(EditText,Activity) or showSoftInput(Activity); * 2、关闭软键盘 closeSoftInput(EditText,Activity) or closeSoftIn 阅读全文
posted @ 2022-05-27 21:39 bg_不够 阅读(12) 评论(0) 推荐(0) 编辑
摘要: /** * 时间工具类 * 1、String类型的日期时间转化为Date类型 getDateByFormat("2016-04-15 12:20:11","yyyy-MM-dd HH:mm:ss"); * 2、获取Date偏移之后的Date getDateByOffset(date,Calendar 阅读全文
posted @ 2022-05-27 21:33 bg_不够 阅读(340) 评论(0) 推荐(0) 编辑