摘要: Android HTTP请求封装代码/** * This class is the Utils of other classes. */public class HttpUtil { /** 变量/常量说明 */ private static final String TAG ... 阅读全文
posted @ 2015-04-13 16:43 cryAllen 阅读(1782) 评论(0) 推荐(0) 编辑
摘要: Andorid定时器封装类public class TimerUtil { private static final String TAG = "TimerUtil"; private static Handler mTimeHandler = null; priva... 阅读全文
posted @ 2015-04-13 16:42 cryAllen 阅读(1378) 评论(1) 推荐(1) 编辑
摘要: 1,MD5工具类: 2,线程睡眠 3,检查网络是否连通 4,异常类捕捉 5,弹出框提醒 6,图片API类 10,提醒封装类 阅读扩展 源于对掌握的Android开发基础点进行整理,罗列下已经总结的文章,从中可以看到技术积累的过程。 1,Android系统简介 2,ProGuard代码混淆 3,讲讲H 阅读全文
posted @ 2015-04-13 16:23 cryAllen 阅读(24750) 评论(1) 推荐(1) 编辑
摘要: 简单日志封装类:public final class CLog { public static final boolean DEBUG = true; private CLog() { } public static void d(String tag, String des... 阅读全文
posted @ 2015-04-13 16:05 cryAllen 阅读(2055) 评论(0) 推荐(0) 编辑