首页 > 系统 > Android > 正文

android 项目常用工具方法

2019-11-09 16:02:22
字体:
来源:转载
供稿:网友

android 常用工具类方法

// 获取手机型号

public static String getInfo() {Build bd = new Build();String model = bd.MODEL;return model;}

/** * 获得屏幕尺寸大小 * * */

public static Size getWindowSize(Context context) {WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);Size winSize = new Size(wm.getDefaultDisplay().getWidth(), wm.getDefaultDisplay().getHeight());return winSize;}

/** * 获得当前系统年月日 * * */

public static String getTime() {Time time = new Time();time.setToNow(); return time.year+"-"+(time.month+1)+"-"+time.monthDay+"-"+time.hour;}

/** * 获取本机串号imei * * */

public static String getIMEI(Context context) {TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);return telephonyManager.getDeviceId();}

/** * 判断SD卡是否存在 * * */

public static boolean ExistSDCard() {if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) {return true;} elsereturn false;}

/** * SD卡剩余空间 * * */

public static long getSDFreeSize(){File path = Environment.getExternalStorageDirectory();StatFs statfs = new StatFs(path.getPath());//获得单个数据块的大小long blocksize = statfs.getBlockSize();//获得空闲数据块的个数long freeblock = statfs.getAvailableBlocks();return (freeblock*blocksize)/1024/1024; //单位MB}

/** * SD卡总容量 * **/

public static long getSDALLsize(){File path = Environment.getExternalStorageDirectory();StatFs statfs = new StatFs(path.getPath());//获得单个数据块的大小long blocksize = statfs.getBlockSize();//获得全部数据块的个数long allBlock = statfs.getBlockCount();return (allBlock*blocksize)/1024/1024; //单位MB}

/** * 判断文件夹是否存在,不存在就创建文件目录SD/wlcache * return **/

public static boolean ExistFile(){File file = new File(sd_card);if (!file.exists()) {file.mkdir();return true;}return true;}

/** * 判断wifi是否可用 turn 是 false 否 * return **/

public static boolean WifiAvailable(Context context){ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);NetworkInfo networkInfo = manager.getActiveNetworkInfo();if(networkInfo != null && networkInfo.getType() == ConnectivityManager.TYPE_WIFI){return true;}return false;}

/** * 判断GPS是否打开 * return **/

public static boolean ExistGPS(Context context){LocationManager locationManager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);if(locationManager.isPRoviderEnabled(android.location.LocationManager.GPS_PROVIDER)){return true;}return false;}

/** * 判断移动网络是否可用 * return **/

public static boolean MobileAvailable(Context context){ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);NetworkInfo networkInfo = manager.getActiveNetworkInfo();if(networkInfo != null && networkInfo.getType() == ConnectivityManager.TYPE_MOBILE){return true;}return false;}

/** * 判断网络是否可用 * return **/

public static boolean NetAvailable(Context context) {ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);NetworkInfo networkInfo = manager.getActiveNetworkInfo();if (networkInfo != null) {return true;}return false;}

/** * 判断apk是否是第一次启动 * return **/

public static boolean APKFirstSt(Context context){SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);boolean firstTime = prefs.getBoolean("com.vieworld.function", true);if (firstTime){Editor pEdit = prefs.edit();pEdit.putBoolean("com.vieworld.function", false);pEdit.commit();}return firstTime;}

/** * 获得当前包的版本号 * return **/

public static String ApkVersionCode(Context context){PackageManager pack = context.getPackageManager();PackageInfo packageInfo = null;String versionCode = null;try {packageInfo = pack.getPackageInfo(context.getPackageName(), 0);versionCode = packageInfo.versionName;} catch (NameNotFoundException e) {// TODO Auto-generated catch blocke.printStackTrace();}return versionCode;}

/** * 判断apk是否需要更新 **/

public static boolean IsApkUpdata(String versionCode,String newversionCode){System.out.println(versionCode+"="+newversionCode);if(newversionCode.equals(versionCode )){return true;}elsereturn false;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表