随笔分类 -  Android常用的工具类

摘要:// 压缩图片public final class ImageTools { /** * * */ public static int computeSampleSize(BitmapFactory.Options options, int min... 阅读全文
posted @ 2015-06-24 20:55 每天学习一点点... 阅读(302) 评论(0) 推荐(0)
摘要:// 分转换 位元 public static String amountOfFormatting(int dataa) { DecimalFormat df = new DecimalFormat(); double data = (double)data... 阅读全文
posted @ 2015-03-23 15:58 每天学习一点点... 阅读(184) 评论(0) 推荐(0)
摘要:/** * 判断时间 * * @param time * @return */ public static String formatDateTime(long time) { // // Si... 阅读全文
posted @ 2015-01-14 14:14 每天学习一点点... 阅读(1433) 评论(0) 推荐(0)
摘要:/** * 判断有没有网络 * * @return */ public boolean isNetworkConnected() { // 判断网络是否连接 ConnectivityManager mConnectivity... 阅读全文
posted @ 2014-12-30 09:49 每天学习一点点... 阅读(176) 评论(0) 推荐(0)