摘要: public static boolean isMobile(String mobiles) { Pattern p = Pattern.compile("^1(3|5|7|8|4)\\d{9}"); Matcher m = p.matcher(mobiles); return m.matches( 阅读全文
posted @ 2016-09-27 15:30 TeddyYan 阅读(4143) 评论(0) 推荐(0) 编辑
摘要: public abstract class SwipeMenuViewHolder { /* 从左侧滑出菜单 */ public static final int EDGE_LEFT = 1; /* 从右侧滑出菜单 */ public static final int EDGE_RIGHT = 2; 阅读全文
posted @ 2016-09-27 11:43 TeddyYan 阅读(158) 评论(0) 推荐(0) 编辑