Android开发之超实用的系统管理工具类【SD卡,网络,uri,屏幕,网络,软键盘,文本,进程等】

 更新时间:2018年02月01日 09:53:28   作者:沉水之木  
这篇文章主要介绍了Android开发之超实用的系统管理工具类,涉及Android针对SD卡,网络,uri,屏幕,网络,软键盘,文本,进程等相关操作技巧,需要的朋友可以参考下

本文实例讲述了Android开发之超实用的系统管理工具类。分享给大家供大家参考,具体如下:

这是一个系统管理工具类,管理sd卡,判断网络,uri转换,获取屏幕宽高,获取网络类型,隐藏软键盘,复制文本到粘贴板,获取状态栏高度,获取当前进程等。

上代码

import java.io.File;
import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.ActivityManager;
import android.content.ClipData;
import android.content.Context;
import android.database.Cursor;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.Build;
import android.os.Environment;
import android.os.StatFs;
import android.provider.MediaStore;
import android.text.TextUtils;
import android.util.DisplayMetrics;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
@SuppressWarnings("deprecation")
public class SystemUtil {
  public static final int NETTYPE_WIFI = 0x01;
  public static final int NETTYPE_CMWAP = 0x02;
  public static final int NETTYPE_CMNET = 0x03;
  /** 判断是否手机插入Sd卡 */
  public static boolean sdCardUseable() {
    return Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
  }
  /**
   * 获取Sd卡的总容量
   *
   * @return
   */
  @SuppressLint("NewApi") public static long getSdCardTotalSize() {
    if(!sdCardUseable()){
      return 0;
    }
    // 取得SD卡文件路径
    File path = Environment.getExternalStorageDirectory();
    StatFs sf = new StatFs(path.getPath());
    // 获取单个数据块的大小(Byte)
    long blockSize = sf.getBlockSizeLong();
    // 获取所有数据块数
    long allBlocks = sf.getBlockCountLong();
    // 返回SD卡大小
    // return allBlocks * blockSize; //单位Byte
    // return (allBlocks * blockSize)/1024; //单位KB
    return (allBlocks * blockSize) / 1024 / 1024; // 单位MB
  }
  /**
   * 获取Sd卡的可用容量
   *
   * @return
   */
  @SuppressLint("NewApi") public static long getSdCardFreeSize() {
    if(!sdCardUseable()){
      return 0;
    }
    // 取得SD卡文件路径
    File path = Environment.getExternalStorageDirectory();
    StatFs sf = new StatFs(path.getPath());
    // 获取单个数据块的大小(Byte)
    long blockSize = sf.getBlockSizeLong();
    // 空闲的数据块的数量
    long freeBlocks = sf.getAvailableBlocksLong();
    // 返回SD卡空闲大小
    // return freeBlocks * blockSize; //单位Byte
    // return (freeBlocks * blockSize)/1024; //单位KB
    return (freeBlocks * blockSize) / 1024 / 1024; // 单位MB
  }
  /**
   * 判断是否联网或者漫游
   *
   * @param context
   * @return boolean
   */
  public static boolean hasNet(Context context) {
    // 获得ConnectivityManager的管理器
    NetworkInfo info = ((ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE)).getActiveNetworkInfo();
    if (info == null || !info.isConnected()) {
      return false;
    }
    if (info.isRoaming()) { // 漫游判断
      return true;
    }
    return true;
  }
  /** 获得The data stream for the file */
  public static String getUrlPath(Activity context, Uri uri) {
    String[] proj = { MediaStore.Images.Media.DATA };
    Cursor cursor = context.managedQuery(uri, proj, null, null, null);
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
  }
  /** 从传入Uri获得真实的path */
  public String getRealPathFromURI(Activity context, Uri contentUri) {
    // can post image
    String[] proj = { MediaStore.Images.Media.DATA };
    Cursor cursor = context.managedQuery(contentUri, proj, // Which columns
                                // to return
        null, // WHERE clause; which rows to return (all rows)
        null, // WHERE clause selection arguments (none)
        null); // Order-by clause (ascending by name)
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
  }
  /** 获得屏幕的宽度 */
  public static int getScreenWidth(Activity context) {
    DisplayMetrics outMetrics = new DisplayMetrics();
    context.getWindowManager().getDefaultDisplay().getMetrics(outMetrics);
    return outMetrics.widthPixels;
  }
  /** 获取屏幕的高度 */
  public static int getScreenHeight(Activity context) {
    DisplayMetrics outMetrics = new DisplayMetrics();
    context.getWindowManager().getDefaultDisplay().getMetrics(outMetrics);
    return outMetrics.heightPixels;
  }
  /** 获得网络的类型 */
  public static int getNetworkType(Context context) {
    int netType = 0;
    ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();
    if (networkInfo == null) { // 判断是否联网
      return netType;
    }
    int nType = networkInfo.getType(); // 获得
    if (nType == ConnectivityManager.TYPE_MOBILE) {
      String extraInfo = networkInfo.getExtraInfo();
      if (!TextUtils.isEmpty(extraInfo)) {
        if (extraInfo.toLowerCase().equals("cmnet")) {
          netType = NETTYPE_CMNET;
        } else {
          netType = NETTYPE_CMWAP;
        }
      }
    } else if (nType == ConnectivityManager.TYPE_WIFI) {
      netType = NETTYPE_WIFI;
    }
    return netType;
  }
  /** 隐藏软件盘 */
  public static void hideSoftKeyborad(Activity context) {
    final View v = context.getWindow().peekDecorView(); // Retrieve the
                              // current decor
                              // view
    if (v != null && v.getWindowToken() != null) {
      InputMethodManager imm = (InputMethodManager) context // 获得输入方法的Manager
          .getSystemService(Context.INPUT_METHOD_SERVICE);
      imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
    }
  }
  /**
   * 复制文本到剪切板
   *
   * @param context
   * @param text
   */
  @TargetApi(value = 11)
  @SuppressLint({ "NewApi", "NewApi" })
  public static void copyText(Context context, String text) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
      android.content.ClipboardManager clipboardManager = (android.content.ClipboardManager) context
          .getSystemService(Context.CLIPBOARD_SERVICE);
      ClipData clipData = ClipData.newPlainText("label", text);
      clipboardManager.setPrimaryClip(clipData);
    } else {
      android.text.ClipboardManager clipboardManager = (android.text.ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
      clipboardManager.setText(text);
    }
  }
  /**
   * 获取状态栏高度
   *
   * @return
   */
  public static int getStatusBarHeight(Context context) {
    Class<?> c = null;
    Object obj = null;
    java.lang.reflect.Field field = null;
    int x = 0;
    int statusBarHeight = 0;
    try {
      c = Class.forName("com.android.internal.R$dimen");
      obj = c.newInstance();
      field = c.getField("status_bar_height");
      x = Integer.parseInt(field.get(obj).toString());
      statusBarHeight = context.getResources().getDimensionPixelSize(x);
      return statusBarHeight;
    } catch (Exception e) {
      e.printStackTrace();
    }
    return statusBarHeight;
  }
  /**
   * 获取当前进程名
   * @param context
   * @return 进程名
   */
  public static final String getProcessName(Context context) {
    String processName = null;
    // ActivityManager
    ActivityManager am = ((ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE));
    while (true) {
      for (ActivityManager.RunningAppProcessInfo info : am.getRunningAppProcesses()) {
        if (info.pid == android.os.Process.myPid()) {
          processName = info.processName;
          break;
        }
      }
      // go home
      if (!TextUtils.isEmpty(processName)) {
        return processName;
      }
      // take a rest and again
      try {
        Thread.sleep(100L);
      } catch (InterruptedException ex) {
        ex.printStackTrace();
      }
    }
  }
}

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android编程获取SD卡路径及剩余容量的方法

    Android编程获取SD卡路径及剩余容量的方法

    这篇文章主要介绍了Android编程获取SD卡路径及剩余容量的方法,涉及Android针对SD卡的状态判断,路径获取及容量计算等相关技巧,需要的朋友可以参考下
    2016-04-04
  • Flutter中灰屏问题的原因及解决方法

    Flutter中灰屏问题的原因及解决方法

    生产中的 flutter 应用程序中的灰屏是一种通用占位符,当框架遇到问题无法渲染预期用户界面时就会显示,所以基本上是出现问题时的后备指示器,本文给大家介绍了Flutter中灰屏问题的原因及解决方法,需要的朋友可以参考下
    2024-06-06
  • Android面试Intent采用了什么设计模式解析

    Android面试Intent采用了什么设计模式解析

    这篇文章主要为大家介绍了Android面试Intent采用了什么设计模式解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-03-03
  • Android实现多点触控功能

    Android实现多点触控功能

    这篇文章主要为大家详细介绍了Android实现多点触控功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • Android8.0适配前台定位服务service的示例代码

    Android8.0适配前台定位服务service的示例代码

    这篇文章主要介绍了Android8.0适配前台定位服务service的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-07-07
  • Android DatePicker和DatePickerDialog基本用法示例

    Android DatePicker和DatePickerDialog基本用法示例

    这篇文章主要介绍了Android DatePicker和DatePickerDialog基本用法,实例分析了DatePicker和DatePickerDialog控件针对手机时间设置的相关技巧,需要的朋友可以参考下
    2016-06-06
  • 外层竖向ScrollView,里层横向ScrollView滑动冲突的解决方法

    外层竖向ScrollView,里层横向ScrollView滑动冲突的解决方法

    下面小编就为大家带来一篇外层竖向ScrollView,里层横向ScrollView滑动冲突的解决方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04
  • 浅析Android手机卫士手机定位的原理

    浅析Android手机卫士手机定位的原理

    手机定位的三种方式:网络定位,基站定位,GPS定位。本文给大家介绍Android手机卫士手机定位的原理,感兴趣的朋友一起学习吧
    2016-04-04
  • Android自动测试工具Monkey的实现方法

    Android自动测试工具Monkey的实现方法

    本文主要介绍Android Monkey 实现方法,Monkey测试是一种为了测试软件的稳定性、健壮性的快速有效的方法,具有非常重要的参考价值,希望对小伙伴有所帮助
    2016-07-07
  • Android开发之自定义加载动画详解

    Android开发之自定义加载动画详解

    这篇文章主要介绍了Android开发的自定义加载动画,效果为一个连续的动画,就是这个大圆不停地吞下小圆,文中示例代码讲解详细,感兴趣的可以了解一下
    2022-03-03

最新评论