无网不进  
软硬件开发

Android快速开发最常用的工具类--最常用的工具类集锦(必收藏)

这里收集与准备了一些Android开发中最常用的工具类,之前有过几篇其他的比较全的单方面的工具类比如FileUtils,ImageUtils等,里面方法很全但略显繁杂,很多大家用之不到,此篇主要涉及一些最常见且常用的工具类,里面方法不是很多单都是精华,大家可以直接拿来用,欢迎大家不断添加与批评指正!

 

首先保存在手机中的轻量型数据sputils,相信大家都有

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.content.Context;  
  4. import android.content.SharedPreferences;  
  5.   
  6. import java.lang.reflect.InvocationTargetException;  
  7. import java.lang.reflect.Method;  
  8. import java.util.Map;  
  9.   
  10. public class SPUtils  
  11. {  
  12.     public SPUtils()  
  13.     {  
  14.         /* cannot be instantiated */  
  15.         throw new UnsupportedOperationException("cannot be instantiated");  
  16.     }  
  17.   
  18.     /** 
  19.      * 保存在手机里面的文件名 
  20.      */  
  21.     public static final String FILE_NAME = "share_data";  
  22.   
  23.     /** 
  24.      * 保存数据的方法,我们需要拿到保存数据的具体类型,然后根据类型调用不同的保存方法 
  25.      *  
  26.      * @param context 
  27.      * @param key 
  28.      * @param object 
  29.      */  
  30.     public static void put(Context context, String key, Object object)  
  31.     {  
  32.   
  33.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  34.                 Context.MODE_PRIVATE);  
  35.         SharedPreferences.Editor editor = sp.edit();  
  36.   
  37.         if (object instanceof String)  
  38.         {  
  39.             editor.putString(key, (String) object);  
  40.         } else if (object instanceof Integer)  
  41.         {  
  42.             editor.putInt(key, (Integer) object);  
  43.         } else if (object instanceof Boolean)  
  44.         {  
  45.             editor.putBoolean(key, (Boolean) object);  
  46.         } else if (object instanceof Float)  
  47.         {  
  48.             editor.putFloat(key, (Float) object);  
  49.         } else if (object instanceof Long)  
  50.         {  
  51.             editor.putLong(key, (Long) object);  
  52.         } else  
  53.         {  
  54.             editor.putString(key, object.toString());  
  55.         }  
  56.   
  57.         SharedPreferencesCompat.apply(editor);  
  58.     }  
  59.   
  60.     /** 
  61.      * 得到保存数据的方法,我们根据默认值得到保存的数据的具体类型,然后调用相对于的方法获取值 
  62.      *  
  63.      * @param context 
  64.      * @param key 
  65.      * @param defaultObject 
  66.      * @return 
  67.      */  
  68.     public static Object get(Context context, String key, Object defaultObject)  
  69.     {  
  70.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  71.                 Context.MODE_PRIVATE);  
  72.   
  73.         if (defaultObject instanceof String)  
  74.         {  
  75.             return sp.getString(key, (String) defaultObject);  
  76.         } else if (defaultObject instanceof Integer)  
  77.         {  
  78.             return sp.getInt(key, (Integer) defaultObject);  
  79.         } else if (defaultObject instanceof Boolean)  
  80.         {  
  81.             return sp.getBoolean(key, (Boolean) defaultObject);  
  82.         } else if (defaultObject instanceof Float)  
  83.         {  
  84.             return sp.getFloat(key, (Float) defaultObject);  
  85.         } else if (defaultObject instanceof Long)  
  86.         {  
  87.             return sp.getLong(key, (Long) defaultObject);  
  88.         }  
  89.   
  90.         return null;  
  91.     }  
  92.   
  93.     /** 
  94.      * 移除某个key值已经对应的值 
  95.      *  
  96.      * @param context 
  97.      * @param key 
  98.      */  
  99.     public static void remove(Context context, String key)  
  100.     {  
  101.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  102.                 Context.MODE_PRIVATE);  
  103.         SharedPreferences.Editor editor = sp.edit();  
  104.         editor.remove(key);  
  105.         SharedPreferencesCompat.apply(editor);  
  106.     }  
  107.   
  108.     /** 
  109.      * 清除所有数据 
  110.      *  
  111.      * @param context 
  112.      */  
  113.     public static void clear(Context context)  
  114.     {  
  115.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  116.                 Context.MODE_PRIVATE);  
  117.         SharedPreferences.Editor editor = sp.edit();  
  118.         editor.clear();  
  119.         SharedPreferencesCompat.apply(editor);  
  120.     }  
  121.   
  122.     /** 
  123.      * 查询某个key是否已经存在 
  124.      *  
  125.      * @param context 
  126.      * @param key 
  127.      * @return 
  128.      */  
  129.     public static boolean contains(Context context, String key)  
  130.     {  
  131.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  132.                 Context.MODE_PRIVATE);  
  133.         return sp.contains(key);  
  134.     }  
  135.   
  136.     /** 
  137.      * 返回所有的键值对 
  138.      *  
  139.      * @param context 
  140.      * @return 
  141.      */  
  142.     public static Map<String, ?> getAll(Context context)  
  143.     {  
  144.         SharedPreferences sp = context.getSharedPreferences(FILE_NAME,  
  145.                 Context.MODE_PRIVATE);  
  146.         return sp.getAll();  
  147.     }  
  148.   
  149.     /** 
  150.      * 创建一个解决SharedPreferencesCompat.apply方法的一个兼容类 
  151.      *  
  152.      * @author zhy 
  153.      *  
  154.      */  
  155.     private static class SharedPreferencesCompat  
  156.     {  
  157.         private static final Method sApplyMethod = findApplyMethod();  
  158.   
  159.         /** 
  160.          * 反射查找apply的方法 
  161.          *  
  162.          * @return 
  163.          */  
  164.         @SuppressWarnings({ "unchecked", "rawtypes" })  
  165.         private static Method findApplyMethod()  
  166.         {  
  167.             try  
  168.             {  
  169.                 Class clz = SharedPreferences.Editor.class;  
  170.                 return clz.getMethod("apply");  
  171.             } catch (NoSuchMethodException e)  
  172.             {  
  173.             }  
  174.   
  175.             return null;  
  176.         }  
  177.   
  178.         /** 
  179.          * 如果找到则使用apply执行,否则使用commit 
  180.          *  
  181.          * @param editor 
  182.          */  
  183.         public static void apply(SharedPreferences.Editor editor)  
  184.         {  
  185.             try  
  186.             {  
  187.                 if (sApplyMethod != null)  
  188.                 {  
  189.                     sApplyMethod.invoke(editor);  
  190.                     return;  
  191.                 }  
  192.             } catch (IllegalArgumentException e)  
  193.             {  
  194.             } catch (IllegalAccessException e)  
  195.             {  
  196.             } catch (InvocationTargetException e)  
  197.             {  
  198.             }  
  199.             editor.commit();  
  200.         }  
  201.     }  
  202.   
  203. }  


简单判断网络状态

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.ComponentName;  
  5. import android.content.Context;  
  6. import android.content.Intent;  
  7. import android.net.ConnectivityManager;  
  8. import android.net.NetworkInfo;  
  9.   
  10. /** 
  11.  * 跟网络相关的工具类 
  12.  *  
  13.  * 简单判断网络状态 
  14.  */  
  15. public class NetUtils  
  16. {  
  17.     private NetUtils()  
  18.     {  
  19.         /* cannot be instantiated */  
  20.         throw new UnsupportedOperationException("cannot be instantiated");  
  21.     }  
  22.   
  23.     /** 
  24.      * 判断网络是否连接 
  25.      *  
  26.      * @param context 
  27.      * @return 
  28.      */  
  29.     public static boolean isConnected(Context context)  
  30.     {  
  31.   
  32.         ConnectivityManager connectivity = (ConnectivityManager) context  
  33.                 .getSystemService(Context.CONNECTIVITY_SERVICE);  
  34.   
  35.         if (null != connectivity)  
  36.         {  
  37.   
  38.             NetworkInfo info = connectivity.getActiveNetworkInfo();  
  39.             if (null != info && info.isConnected())  
  40.             {  
  41.                 if (info.getState() == NetworkInfo.State.CONNECTED)  
  42.                 {  
  43.                     return true;  
  44.                 }  
  45.             }  
  46.         }  
  47.         return false;  
  48.     }  
  49.   
  50.     /** 
  51.      * 判断是否是wifi连接 
  52.      */  
  53.     public static boolean isWifi(Context context)  
  54.     {  
  55.         ConnectivityManager cm = (ConnectivityManager) context  
  56.                 .getSystemService(Context.CONNECTIVITY_SERVICE);  
  57.   
  58.         if (cm == null)  
  59.             return false;  
  60.         return cm.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;  
  61.   
  62.     }  
  63.   
  64.     /** 
  65.      * 打开网络设置界面 
  66.      */  
  67.     public static void openSetting(Activity activity)  
  68.     {  
  69.         Intent intent = new Intent("/");  
  70.         ComponentName cm = new ComponentName("com.android.settings",  
  71.                 "com.android.settings.WirelessSettings");  
  72.         intent.setComponent(cm);  
  73.         intent.setAction("android.intent.action.VIEW");  
  74.         activity.startActivityForResult(intent, 0);  
  75.     }  
  76.   
  77. }  


Log统一管理类
* 通过isDebug属性设置是否开启log输出,方便开发 使用
[html] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.util.Log;  
  4.   
  5. /**  
  6.  * Log统一管理类  
  7.  * 通过isDebug属性设置是否开启log输出,方便开发 使用  
  8.  *  
  9.  */  
  10. public class L  
  11. {  
  12.   
  13.     private L()  
  14.     {  
  15.         /* cannot be instantiated */  
  16.         throw new UnsupportedOperationException("cannot be instantiated");  
  17.     }  
  18.   
  19.     public static boolean isDebug = true;// 是否需要打印bug,可以在application的onCreate函数里面初始化  
  20.     private static final String TAG = "way";  
  21.   
  22.     // 下面四个是默认tag的函数  
  23.     public static void i(String msg)  
  24.     {  
  25.         if (isDebug)  
  26.             Log.i(TAG, msg);  
  27.     }  
  28.   
  29.     public static void d(String msg)  
  30.     {  
  31.         if (isDebug)  
  32.             Log.d(TAG, msg);  
  33.     }  
  34.   
  35.     public static void e(String msg)  
  36.     {  
  37.         if (isDebug)  
  38.             Log.e(TAG, msg);  
  39.     }  
  40.   
  41.     public static void v(String msg)  
  42.     {  
  43.         if (isDebug)  
  44.             Log.v(TAG, msg);  
  45.     }  
  46.   
  47.     // 下面是传入自定义tag的函数  
  48.     public static void i(String tag, String msg)  
  49.     {  
  50.         if (isDebug)  
  51.             Log.i(tag, msg);  
  52.     }  
  53.   
  54.     public static void d(String tag, String msg)  
  55.     {  
  56.         if (isDebug)  
  57.             Log.i(tag, msg);  
  58.     }  
  59.   
  60.     public static void e(String tag, String msg)  
  61.     {  
  62.         if (isDebug)  
  63.             Log.i(tag, msg);  
  64.     }  
  65.   
  66.     public static void v(String tag, String msg)  
  67.     {  
  68.         if (isDebug)  
  69.             Log.i(tag, msg);  
  70.     }  
  71. }  


Toast统一管理类
* 通过boolean isShow的属性设置是否提示toast 并且可以设置显示时间
[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.content.Context;  
  4. import android.widget.Toast;  
  5.   
  6. /** 
  7.  * Toast统一管理类 
  8.  * 通过boolean isShow的属性设置是否提示toast  并且可以设置显示时间  方便开发使用 
  9.  */  
  10. public class T  
  11. {  
  12.   
  13.     private T()  
  14.     {  
  15.         /* cannot be instantiated */  
  16.         throw new UnsupportedOperationException("cannot be instantiated");  
  17.     }  
  18.   
  19.     public static boolean isShow = true;  
  20.   
  21.     /** 
  22.      * 短时间显示Toast 
  23.      *  
  24.      * @param context 
  25.      * @param message 
  26.      */  
  27.     public static void showShort(Context context, CharSequence message)  
  28.     {  
  29.         if (isShow)  
  30.             Toast.makeText(context, message, Toast.LENGTH_SHORT).show();  
  31.     }  
  32.   
  33.     /** 
  34.      * 短时间显示Toast 
  35.      *  
  36.      * @param context 
  37.      * @param message 
  38.      */  
  39.     public static void showShort(Context context, int message)  
  40.     {  
  41.         if (isShow)  
  42.             Toast.makeText(context, message, Toast.LENGTH_SHORT).show();  
  43.     }  
  44.   
  45.     /** 
  46.      * 长时间显示Toast 
  47.      *  
  48.      * @param context 
  49.      * @param message 
  50.      */  
  51.     public static void showLong(Context context, CharSequence message)  
  52.     {  
  53.         if (isShow)  
  54.             Toast.makeText(context, message, Toast.LENGTH_LONG).show();  
  55.     }  
  56.   
  57.     /** 
  58.      * 长时间显示Toast 
  59.      *  
  60.      * @param context 
  61.      * @param message 
  62.      */  
  63.     public static void showLong(Context context, int message)  
  64.     {  
  65.         if (isShow)  
  66.             Toast.makeText(context, message, Toast.LENGTH_LONG).show();  
  67.     }  
  68.   
  69.     /** 
  70.      * 自定义显示Toast时间 
  71.      *  
  72.      * @param context 
  73.      * @param message 
  74.      * @param duration 
  75.      */  
  76.     public static void show(Context context, CharSequence message, int duration)  
  77.     {  
  78.         if (isShow)  
  79.             Toast.makeText(context, message, duration).show();  
  80.     }  
  81.   
  82.     /** 
  83.      * 自定义显示Toast时间 
  84.      *  
  85.      * @param context 
  86.      * @param message 
  87.      * @param duration 
  88.      */  
  89.     public static void show(Context context, int message, int duration)  
  90.     {  
  91.         if (isShow)  
  92.             Toast.makeText(context, message, duration).show();  
  93.     }  
  94.   
  95. }  


各种dp,px,sp互转 方便屏幕适配

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.content.Context;  
  4. import android.util.TypedValue;  
  5.   
  6. /** 
  7.  * 常用单位转换的辅助类 
  8.  *  
  9.  * 各种dp,px,sp互转  方便屏幕适配 
  10.  */  
  11. public class DensityUtils  
  12. {  
  13.     private DensityUtils()  
  14.     {  
  15.         /* cannot be instantiated */  
  16.         throw new UnsupportedOperationException("cannot be instantiated");  
  17.     }  
  18.   
  19.     /** 
  20.      * dp转px 
  21.      *  
  22.      * @param context 
  23.      * @param val 
  24.      * @return 
  25.      */  
  26.     public static int dp2px(Context context, float dpVal)  
  27.     {  
  28.         return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,  
  29.                 dpVal, context.getResources().getDisplayMetrics());  
  30.     }  
  31.   
  32.     /** 
  33.      * sp转px 
  34.      *  
  35.      * @param context 
  36.      * @param val 
  37.      * @return 
  38.      */  
  39.     public static int sp2px(Context context, float spVal)  
  40.     {  
  41.         return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,  
  42.                 spVal, context.getResources().getDisplayMetrics());  
  43.     }  
  44.   
  45.     /** 
  46.      * px转dp 
  47.      *  
  48.      * @param context 
  49.      * @param pxVal 
  50.      * @return 
  51.      */  
  52.     public static float px2dp(Context context, float pxVal)  
  53.     {  
  54.         final float scale = context.getResources().getDisplayMetrics().density;  
  55.         return (pxVal / scale);  
  56.     }  
  57.   
  58.     /** 
  59.      * px转sp 
  60.      *  
  61.      * @param fontScale 
  62.      * @param pxVal 
  63.      * @return 
  64.      */  
  65.     public static float px2sp(Context context, float pxVal)  
  66.     {  
  67.         return (pxVal / context.getResources().getDisplayMetrics().scaledDensity);  
  68.     }  
  69.   
  70. }  


SD卡相关的辅助类
* 判断sd卡状态/路径/指定空间可用容量等
[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.os.Environment;  
  4. import android.os.StatFs;  
  5.   
  6. import java.io.File;  
  7.   
  8. /** 
  9.  * SD卡相关的辅助类 
  10.  *  
  11.  * 判断sd卡状态/路径/指定空间可用容量等 
  12.  */  
  13. public class SDCardUtils  
  14. {  
  15.     private SDCardUtils()  
  16.     {  
  17.         /* cannot be instantiated */  
  18.         throw new UnsupportedOperationException("cannot be instantiated");  
  19.     }  
  20.   
  21.     /** 
  22.      * 判断SDCard是否可用 
  23.      *  
  24.      * @return 
  25.      */  
  26.     public static boolean isSDCardEnable()  
  27.     {  
  28.         return Environment.getExternalStorageState().equals(  
  29.                 Environment.MEDIA_MOUNTED);  
  30.   
  31.     }  
  32.   
  33.     /** 
  34.      * 获取SD卡路径 
  35.      *  
  36.      * @return 
  37.      */  
  38.     public static String getSDCardPath()  
  39.     {  
  40.         return Environment.getExternalStorageDirectory().getAbsolutePath()  
  41.                 + File.separator;  
  42.     }  
  43.   
  44.     /** 
  45.      * 获取SD卡的剩余容量 单位byte 
  46.      *  
  47.      * @return 
  48.      */  
  49.     public static long getSDCardAllSize()  
  50.     {  
  51.         if (isSDCardEnable())  
  52.         {  
  53.             StatFs stat = new StatFs(getSDCardPath());  
  54.             // 获取空闲的数据块的数量  
  55.             long availableBlocks = (long) stat.getAvailableBlocks() - 4;  
  56.             // 获取单个数据块的大小(byte)  
  57.             long freeBlocks = stat.getAvailableBlocks();  
  58.             return freeBlocks * availableBlocks;  
  59.         }  
  60.         return 0;  
  61.     }  
  62.   
  63.     /** 
  64.      * 获取指定路径所在空间的剩余可用容量字节数,单位byte 
  65.      *  
  66.      * @param filePath 
  67.      * @return 容量字节 SDCard可用空间,内部存储可用空间 
  68.      */  
  69.     public static long getFreeBytes(String filePath)  
  70.     {  
  71.         // 如果是sd卡的下的路径,则获取sd卡可用容量  
  72.         if (filePath.startsWith(getSDCardPath()))  
  73.         {  
  74.             filePath = getSDCardPath();  
  75.         } else  
  76.         {// 如果是内部存储的路径,则获取内存存储的可用容量  
  77.             filePath = Environment.getDataDirectory().getAbsolutePath();  
  78.         }  
  79.         StatFs stat = new StatFs(filePath);  
  80.         long availableBlocks = (long) stat.getAvailableBlocks() - 4;  
  81.         return stat.getBlockSize() * availableBlocks;  
  82.     }  
  83.   
  84.     /** 
  85.      * 获取系统存储路径 
  86.      *  
  87.      * @return 
  88.      */  
  89.     public static String getRootDirectoryPath()  
  90.     {  
  91.         return Environment.getRootDirectory().getAbsolutePath();  
  92.     }  
  93.   
  94.   
  95. }  


获得屏幕宽高./当前截图

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Context;  
  5. import android.graphics.Bitmap;  
  6. import android.graphics.Rect;  
  7. import android.util.DisplayMetrics;  
  8. import android.view.View;  
  9. import android.view.WindowManager;  
  10.   
  11. /** 
  12.  * 获得屏幕相关的辅助类 
  13.  *  
  14.  * 获得屏幕宽高./当前截图 
  15.  */  
  16. public class ScreenUtils  
  17. {  
  18.     private ScreenUtils()  
  19.     {  
  20.         /* cannot be instantiated */  
  21.         throw new UnsupportedOperationException("cannot be instantiated");  
  22.     }  
  23.   
  24.     /** 
  25.      * 获得屏幕高度 
  26.      *  
  27.      * @param context 
  28.      * @return 
  29.      */  
  30.     public static int getScreenWidth(Context context)  
  31.     {  
  32.         WindowManager wm = (WindowManager) context  
  33.                 .getSystemService(Context.WINDOW_SERVICE);  
  34.         DisplayMetrics outMetrics = new DisplayMetrics();  
  35.         wm.getDefaultDisplay().getMetrics(outMetrics);  
  36.         return outMetrics.widthPixels;  
  37.     }  
  38.   
  39.     /** 
  40.      * 获得屏幕宽度 
  41.      *  
  42.      * @param context 
  43.      * @return 
  44.      */  
  45.     public static int getScreenHeight(Context context)  
  46.     {  
  47.         WindowManager wm = (WindowManager) context  
  48.                 .getSystemService(Context.WINDOW_SERVICE);  
  49.         DisplayMetrics outMetrics = new DisplayMetrics();  
  50.         wm.getDefaultDisplay().getMetrics(outMetrics);  
  51.         return outMetrics.heightPixels;  
  52.     }  
  53.   
  54.     /** 
  55.      * 获得状态栏的高度 
  56.      *  
  57.      * @param context 
  58.      * @return 
  59.      */  
  60.     public static int getStatusHeight(Context context)  
  61.     {  
  62.   
  63.         int statusHeight = -1;  
  64.         try  
  65.         {  
  66.             Class<?> clazz = Class.forName("com.android.internal.R$dimen");  
  67.             Object object = clazz.newInstance();  
  68.             int height = Integer.parseInt(clazz.getField("status_bar_height")  
  69.                     .get(object).toString());  
  70.             statusHeight = context.getResources().getDimensionPixelSize(height);  
  71.         } catch (Exception e)  
  72.         {  
  73.             e.printStackTrace();  
  74.         }  
  75.         return statusHeight;  
  76.     }  
  77.   
  78.     /** 
  79.      * 获取当前屏幕截图,包含状态栏 
  80.      *  
  81.      * @param activity 
  82.      * @return 
  83.      */  
  84.     public static Bitmap snapShotWithStatusBar(Activity activity)  
  85.     {  
  86.         View view = activity.getWindow().getDecorView();  
  87.         view.setDrawingCacheEnabled(true);  
  88.         view.buildDrawingCache();  
  89.         Bitmap bmp = view.getDrawingCache();  
  90.         int width = getScreenWidth(activity);  
  91.         int height = getScreenHeight(activity);  
  92.         Bitmap bp = null;  
  93.         bp = Bitmap.createBitmap(bmp, 0, 0, width, height);  
  94.         view.destroyDrawingCache();  
  95.         return bp;  
  96.   
  97.     }  
  98.   
  99.     /** 
  100.      * 获取当前屏幕截图,不包含状态栏 
  101.      *  
  102.      * @param activity 
  103.      * @return 
  104.      */  
  105.     public static Bitmap snapShotWithoutStatusBar(Activity activity)  
  106.     {  
  107.         View view = activity.getWindow().getDecorView();  
  108.         view.setDrawingCacheEnabled(true);  
  109.         view.buildDrawingCache();  
  110.         Bitmap bmp = view.getDrawingCache();  
  111.         Rect frame = new Rect();  
  112.         activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  
  113.         int statusBarHeight = frame.top;  
  114.   
  115.         int width = getScreenWidth(activity);  
  116.         int height = getScreenHeight(activity);  
  117.         Bitmap bp = null;  
  118.         bp = Bitmap.createBitmap(bmp, 0, statusBarHeight, width, height  
  119.                 - statusBarHeight);  
  120.         view.destroyDrawingCache();  
  121.         return bp;  
  122.   
  123.     }  
  124.   
  125. }  


获取应用名称 版本号等

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.content.Context;  
  4. import android.content.pm.PackageInfo;  
  5. import android.content.pm.PackageManager;  
  6. import android.content.pm.PackageManager.NameNotFoundException;  
  7.   
  8. /** 
  9.  * 跟App相关的辅助类 
  10.  *  
  11.  * 获取应用名称  版本号等 
  12.  */  
  13. public class AppUtils  
  14. {  
  15.   
  16.     private AppUtils()  
  17.     {  
  18.         /* cannot be instantiated */  
  19.         throw new UnsupportedOperationException("cannot be instantiated");  
  20.   
  21.     }  
  22.   
  23.     /** 
  24.      * 获取应用程序名称 
  25.      */  
  26.     public static String getAppName(Context context)  
  27.     {  
  28.         try  
  29.         {  
  30.             PackageManager packageManager = context.getPackageManager();  
  31.             PackageInfo packageInfo = packageManager.getPackageInfo(  
  32.                     context.getPackageName(), 0);  
  33.             int labelRes = packageInfo.applicationInfo.labelRes;  
  34.             return context.getResources().getString(labelRes);  
  35.         } catch (NameNotFoundException e)  
  36.         {  
  37.             e.printStackTrace();  
  38.         }  
  39.         return null;  
  40.     }  
  41.   
  42.     /** 
  43.      * [获取应用程序版本名称信息] 
  44.      *  
  45.      * @param context 
  46.      * @return 当前应用的版本名称 
  47.      */  
  48.     public static String getVersionName(Context context)  
  49.     {  
  50.         try  
  51.         {  
  52.             PackageManager packageManager = context.getPackageManager();  
  53.             PackageInfo packageInfo = packageManager.getPackageInfo(  
  54.                     context.getPackageName(), 0);  
  55.             return packageInfo.versionName;  
  56.   
  57.         } catch (NameNotFoundException e)  
  58.         {  
  59.             e.printStackTrace();  
  60.         }  
  61.         return null;  
  62.     }  
  63.   
  64. }  


简单的get post及回返数据的请求

[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.ByteArrayOutputStream;  
  5. import java.io.IOException;  
  6. import java.io.InputStream;  
  7. import java.io.InputStreamReader;  
  8. import java.io.PrintWriter;  
  9. import java.net.HttpURLConnection;  
  10. import java.net.URL;  
  11.   
  12. /** 
  13.  * Http请求的工具类 
  14.  *  
  15.  * 简单的get post及回返数据的请求 
  16.  */  
  17. public class HttpUtils  
  18. {  
  19.   
  20.     private static final int TIMEOUT_IN_MILLIONS = 5000;  
  21.   
  22.     public interface CallBack  
  23.     {  
  24.         void onRequestComplete(String result);  
  25.     }  
  26.   
  27.   
  28.     /** 
  29.      * 异步的Get请求 
  30.      *  
  31.      * @param urlStr 
  32.      * @param callBack 
  33.      */  
  34.     public static void doGetAsyn(final String urlStr, final CallBack callBack)  
  35.     {  
  36.         new Thread()  
  37.         {  
  38.             public void run()  
  39.             {  
  40.                 try  
  41.                 {  
  42.                     String result = doGet(urlStr);  
  43.                     if (callBack != null)  
  44.                     {  
  45.                         callBack.onRequestComplete(result);  
  46.                     }  
  47.                 } catch (Exception e)  
  48.                 {  
  49.                     e.printStackTrace();  
  50.                 }  
  51.   
  52.             };  
  53.         }.start();  
  54.     }  
  55.   
  56.     /** 
  57.      * 异步的Post请求 
  58.      * @param urlStr 
  59.      * @param params 
  60.      * @param callBack 
  61.      * @throws Exception 
  62.      */  
  63.     public static void doPostAsyn(final String urlStr, final String params,  
  64.             final CallBack callBack) throws Exception  
  65.     {  
  66.         new Thread()  
  67.         {  
  68.             public void run()  
  69.             {  
  70.                 try  
  71.                 {  
  72.                     String result = doPost(urlStr, params);  
  73.                     if (callBack != null)  
  74.                     {  
  75.                         callBack.onRequestComplete(result);  
  76.                     }  
  77.                 } catch (Exception e)  
  78.                 {  
  79.                     e.printStackTrace();  
  80.                 }  
  81.   
  82.             };  
  83.         }.start();  
  84.   
  85.     }  
  86.   
  87.     /** 
  88.      * Get请求,获得返回数据 
  89.      *  
  90.      * @param urlStr 
  91.      * @return 
  92.      * @throws Exception 
  93.      */  
  94.     public static String doGet(String urlStr)   
  95.     {  
  96.         URL url = null;  
  97.         HttpURLConnection conn = null;  
  98.         InputStream is = null;  
  99.         ByteArrayOutputStream baos = null;  
  100.         try  
  101.         {  
  102.             url = new URL(urlStr);  
  103.             conn = (HttpURLConnection) url.openConnection();  
  104.             conn.setReadTimeout(TIMEOUT_IN_MILLIONS);  
  105.             conn.setConnectTimeout(TIMEOUT_IN_MILLIONS);  
  106.             conn.setRequestMethod("GET");  
  107.             conn.setRequestProperty("accept", "*/*");  
  108.             conn.setRequestProperty("connection", "Keep-Alive");  
  109.             if (conn.getResponseCode() == 200)  
  110.             {  
  111.                 is = conn.getInputStream();  
  112.                 baos = new ByteArrayOutputStream();  
  113.                 int len = -1;  
  114.                 byte[] buf = new byte[128];  
  115.   
  116.                 while ((len = is.read(buf)) != -1)  
  117.                 {  
  118.                     baos.write(buf, 0, len);  
  119.                 }  
  120.                 baos.flush();  
  121.                 return baos.toString();  
  122.             } else  
  123.             {  
  124.                 throw new RuntimeException(" responseCode is not 200 ... ");  
  125.             }  
  126.   
  127.         } catch (Exception e)  
  128.         {  
  129.             e.printStackTrace();  
  130.         } finally  
  131.         {  
  132.             try  
  133.             {  
  134.                 if (is != null)  
  135.                     is.close();  
  136.             } catch (IOException e)  
  137.             {  
  138.             }  
  139.             try  
  140.             {  
  141.                 if (baos != null)  
  142.                     baos.close();  
  143.             } catch (IOException e)  
  144.             {  
  145.             }  
  146.             conn.disconnect();  
  147.         }  
  148.           
  149.         return null ;  
  150.   
  151.     }  
  152.   
  153.     /**  
  154.      * 向指定 URL 发送POST方法的请求  
  155.      *   
  156.      * @param url  
  157.      *            发送请求的 URL  
  158.      * @param param  
  159.      *            请求参数,请求参数应该是 name1=value1&name2=value2 的形式。  
  160.      * @return 所代表远程资源的响应结果  
  161.      * @throws Exception  
  162.      */  
  163.     public static String doPost(String url, String param)   
  164.     {  
  165.         PrintWriter out = null;  
  166.         BufferedReader in = null;  
  167.         String result = "";  
  168.         try  
  169.         {  
  170.             URL realUrl = new URL(url);  
  171.             // 打开和URL之间的连接  
  172.             HttpURLConnection conn = (HttpURLConnection) realUrl  
  173.                     .openConnection();  
  174.             // 设置通用的请求属性  
  175.             conn.setRequestProperty("accept", "*/*");  
  176.             conn.setRequestProperty("connection", "Keep-Alive");  
  177.             conn.setRequestMethod("POST");  
  178.             conn.setRequestProperty("Content-Type",  
  179.                     "application/x-www-form-urlencoded");  
  180.             conn.setRequestProperty("charset", "utf-8");  
  181.             conn.setUseCaches(false);  
  182.             // 发送POST请求必须设置如下两行  
  183.             conn.setDoOutput(true);  
  184.             conn.setDoInput(true);  
  185.             conn.setReadTimeout(TIMEOUT_IN_MILLIONS);  
  186.             conn.setConnectTimeout(TIMEOUT_IN_MILLIONS);  
  187.   
  188.             if (param != null && !param.trim().equals(""))  
  189.             {  
  190.                 // 获取URLConnection对象对应的输出流  
  191.                 out = new PrintWriter(conn.getOutputStream());  
  192.                 // 发送请求参数  
  193.                 out.print(param);  
  194.                 // flush输出流的缓冲  
  195.                 out.flush();  
  196.             }  
  197.             // 定义BufferedReader输入流来读取URL的响应  
  198.             in = new BufferedReader(  
  199.                     new InputStreamReader(conn.getInputStream()));  
  200.             String line;  
  201.             while ((line = in.readLine()) != null)  
  202.             {  
  203.                 result += line;  
  204.             }  
  205.         } catch (Exception e)  
  206.         {  
  207.             e.printStackTrace();  
  208.         }  
  209.         // 使用finally块来关闭输出流、输入流  
  210.         finally  
  211.         {  
  212.             try  
  213.             {  
  214.                 if (out != null)  
  215.                 {  
  216.                     out.close();  
  217.                 }  
  218.                 if (in != null)  
  219.                 {  
  220.                     in.close();  
  221.                 }  
  222.             } catch (IOException ex)  
  223.             {  
  224.                 ex.printStackTrace();  
  225.             }  
  226.         }  
  227.         return result;  
  228.     }  
  229. }  
打开或关闭软键盘
[java] view plain copy
 
 print?
  1. package com.atguigu.auto_percent.ten_common_utils;  
  2.   
  3. import android.content.Context;  
  4. import android.view.inputmethod.InputMethodManager;  
  5. import android.widget.EditText;  
  6.   
  7. /** 
  8.  * 打开或关闭软键盘 
  9.  *  
  10.  * 
  11.  */  
  12. public class KeyBoardUtils  
  13. {  
  14.     /** 
  15.      * 打卡软键盘 
  16.      *  
  17.      * @param mEditText 
  18.      *            输入框 
  19.      * @param mContext 
  20.      *            上下文 
  21.      */  
  22.     public static void openKeybord(EditText mEditText, Context mContext)  
  23.     {  
  24.         InputMethodManager imm = (InputMethodManager) mContext  
  25.                 .getSystemService(Context.INPUT_METHOD_SERVICE);  
  26.         imm.showSoftInput(mEditText, InputMethodManager.RESULT_SHOWN);  
  27.         imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,  
  28.                 InputMethodManager.HIDE_IMPLICIT_ONLY);  
  29.     }  
  30.   
  31.     /** 
  32.      * 关闭软键盘 
  33.      *  
  34.      * @param mEditText 
  35.      *            输入框 
  36.      * @param mContext 
  37.      *            上下文 
  38.      */  
  39.     public static void closeKeybord(EditText mEditText, Context mContext)  
  40.     {  
  41.         InputMethodManager imm = (InputMethodManager) mContext  
  42.                 .getSystemService(Context.INPUT_METHOD_SERVICE);  
  43.   
  44.         imm.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);  
  45.     }  
  46. }  
posted on 2017-12-21 16:04  无网不进  阅读(273)  评论(0编辑  收藏  举报