android utility class share of get memory and check network and screen height and phone resolution

  • 2020-05-27 07:12:08
  • OfStack


public class CommonUtil {
 public static boolean hasSDCard() {
  String status = Environment.getExternalStorageState();
  return status.equals(Environment.MEDIA_MOUNTED);
 }
 /**
  *  Get maximum memory 
  * 
  * @return
  */
 public static long getMaxMemory() {
  return Runtime.getRuntime().maxMemory() / 1024;
 }
 /**
  *  Check the network 
  * 
  * @param context
  * @return
  */
 public static boolean checkNetState(Context context) {
  boolean netstate = false;
  ConnectivityManager connectivity = (ConnectivityManager) context
    .getSystemService(Context.CONNECTIVITY_SERVICE);
  if (connectivity != null) {
   NetworkInfo[] info = connectivity.getAllNetworkInfo();
   if (info != null) {
    for (int i = 0; i < info.length; i++) {
     if (info[i].getState() == NetworkInfo.State.CONNECTED) {
      netstate = true;
      break;
     }
    }
   }
  }
  return netstate;
 }
 public static void showToast(Context context, String tip) {
  Toast.makeText(context, tip, Toast.LENGTH_SHORT).show();
 }
 public static DisplayMetrics metric = new DisplayMetrics();
 /**
  *  Get the screen height 
  * 
  * @param context
  * @return
  */
 public static int getScreenHeight(Activity context) {
  context.getWindowManager().getDefaultDisplay().getMetrics(metric);
  return metric.heightPixels;
 }
 /**
  *  Get the screen width 
  * 
  * @param context
  * @return
  */
 public static int getScreenWidth(Activity context) {
  context.getWindowManager().getDefaultDisplay().getMetrics(metric);
  return metric.widthPixels;
 }
 /**
  *  According to the phone's resolution from  dp  The unit of   Turn to be  px( pixel )
  */
 public static int dip2px(Context context, float dpValue) {
  final float scale = context.getResources().getDisplayMetrics().density;
  return (int) (dpValue * scale + 0.5f);
 }
 /**
  *  According to the phone's resolution from  px( pixel )  The unit of   Turn to be  dp
  */
 public static int px2dip(Context context, float pxValue) {
  final float scale = context.getResources().getDisplayMetrics().density;
  return (int) (pxValue / scale + 0.5f);
 }
 /**
  *  Search non-system applications in mobile phone 
  * 
  * @param context
  * @return
  */
 public static List<PackageInfo> getAllApps(Context context) {
  List<PackageInfo> apps = new ArrayList<PackageInfo>();
  PackageManager pManager = context.getPackageManager();
  //  Get all the apps on your phone 
  List<PackageInfo> paklist = pManager.getInstalledPackages(0);
  for (int i = 0; i < paklist.size(); i++) {
   PackageInfo pak = (PackageInfo) paklist.get(i);
   //  Determine if it is a non-system pre-installed application 
   if ((pak.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) <= 0) {
    // customs applications
    apps.add(pak);
   }
  }
  return apps;
 }
 public static Bitmap zoomBitmap(Bitmap bitmap, int width, int height) {
  int w = bitmap.getWidth();
  int h = bitmap.getHeight();
  Matrix matrix = new Matrix();
  float scaleWidth = ((float) width / w);
  float scaleHeight = ((float) height / h);
  matrix.postScale(scaleWidth, scaleHeight);
  Bitmap newbmp = Bitmap.createBitmap(bitmap, 0, 0, w, h, matrix, true);
  return newbmp;
 }
 /**
  *  Gets the version number and number of versions 
  * 
  * @param context
  * @return
  */
 public static String getVersionCode(Context context, int type) {
  try {
   PackageInfo pi = context.getPackageManager().getPackageInfo(
     context.getPackageName(), 0);
   if (type == 1) {
    return String.valueOf(pi.versionCode);
   } else {
    return pi.versionName;
   }
  } catch (NameNotFoundException e) {
   e.printStackTrace();
   return null;
  }
 }
 //  through Service To determine whether to start a service 
 public static boolean messageServiceIsStart(
   List<ActivityManager.RunningServiceInfo> mServiceList,
   String className) {
  for (int i = 0; i < mServiceList.size(); i++) {
   if (className.equals(mServiceList.get(i).service.getClassName())) {
    return true;
   }
  }
  return false;
 }
}


Related articles: