收集常用的工具类或者方法:

1.获取手机分辨率

/** * 获取手机分辨率 */    public static String getDisplayMetrix(Context context)    {        if (Constant.Screen.SCREEN_WIDTH == 0 || Constant.Screen.SCREEN_HEIGHT == 0)        {            if (context != null)            {                int width = 0;                int height = 0;                SharedPreferences DiaplayMetrixInfo = context.getSharedPreferences("display_metrix_info", 0);                if (context instanceof Activity)                {                    WindowManager windowManager = ((Activity)context).getWindowManager();                    Display display = windowManager.getDefaultDisplay();                    DisplayMetrics dm = new DisplayMetrics();                    display.getMetrics(dm);                    width = dm.widthPixels;                    height = dm.heightPixels;                    Editor editor = DiaplayMetrixInfo.edit();                    editor.putInt("width", width);                    editor.putInt("height", height);                    editor.commit();                }                else                {                    width = DiaplayMetrixInfo.getInt("width", 0);                    height = DiaplayMetrixInfo.getInt("height", 0);                }                Constant.Screen.SCREEN_WIDTH = width;                Constant.Screen.SCREEN_HEIGHT = height;            }        }        return Constant.Screen.SCREEN_WIDTH + "×" + Constant.Screen.SCREEN_HEIGHT;    }

2.关闭系统的软键盘

public class SoftKeyboardUtil {    /** * 关闭系统的软键盘 * @param activity */    public static void dismissSoftKeyboard(Activity activity)    {        View view = activity.getWindow().peekDecorView();        if (view != null)        {            InputMethodManager inputmanger = (InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE);            inputmanger.hideSoftInputFromWindow(view.getWindowToken(), 0);        }    }}

3.检测某程序是否安装

/** * 检测某程序是否安装 */    public static boolean isInstalledApp(Context context, String packageName)    {        Boolean flag = false;        try        {            PackageManager pm = context.getPackageManager();            List<PackageInfo> pkgs = pm.getInstalledPackages(PackageManager.GET_UNINSTALLED_PACKAGES);            for (PackageInfo pkg : pkgs)            {                // 当找到了名字和该包名相同的时候,返回                if ((pkg.packageName).equals(packageName))                {                    return flag = true;                }            }        }        catch (Exception e)        {            // TODO Auto-generated catch block            e.printStackTrace();        }        return flag;    }

4.安装APK文件

/** * 安装.apk文件 * * @param context */    public void install(Context context, String fileName)    {        if (TextUtils.isEmpty(fileName) || context == null)        {            return;        }        try        {            Intent intent = new Intent(Intent.ACTION_VIEW);            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);            intent.setAction(android.content.Intent.ACTION_VIEW);            intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");            context.startActivity(intent);        }        catch (Exception e)        {            e.printStackTrace();        }    }    /** * 安装.apk文件 * * @param context */    public void install(Context context, File file)    {        try        {            Intent intent = new Intent(Intent.ACTION_VIEW);            intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");            context.startActivity(intent);        }        catch (Exception e)        {            e.printStackTrace();        }    }

5.dp—px相互转换

/** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) * * @return 返回像素值 */    public static int dp2px(Context context, float dpValue) {        final float scale = context.getResources().getDisplayMetrics().density;        return (int) (dpValue * scale + 0.5f);    }    /** * 根据手机的分辨率从 px(像素) 的单位 转成为 dp * * @return 返回dp值 */    public static int px2dp(Context context, float pxValue) {        final float scale = context.getResources().getDisplayMetrics().density;        return (int) (pxValue / scale + 0.5f);    }

6. Strings.xml中“%s”的使用方式

在strings.xml中添加字符串

string name="text">Hello,%s!</string>

代码中使用

textView.setText(String.format(getResources().getString(R.string.text),"Android"));

输出结果:Hello,Android!

7. 根据mac地址+deviceid获取设备唯一编码

private static String DEVICEKEY = "";    /** * 根据mac地址+deviceid * 获取设备唯一编码 * @return */    public static String getDeviceKey()    {        if ("".equals(DEVICEKEY))        {            String macAddress = "";            WifiManager wifiMgr = (WifiManager)MainApplication.getIns().getSystemService(MainApplication.WIFI_SERVICE);            WifiInfo info = (null == wifiMgr ? null : wifiMgr.getConnectionInfo());            if (null != info)            {                macAddress = info.getMacAddress();            }            TelephonyManager telephonyManager =                (TelephonyManager)MainApplication.getIns().getSystemService(MainApplication.TELEPHONY_SERVICE);            String deviceId = telephonyManager.getDeviceId();            DEVICEKEY = MD5Util.toMD5("android" + Constant.APPKEY + Constant.APPPWD + macAddress + deviceId);        }        return DEVICEKEY;    }

8. 获取手机及SIM卡相关信息

/** * 获取手机及SIM卡相关信息 * @param context * @return */    public static Map<String, String> getPhoneInfo(Context context) {        Map<String, String> map = new HashMap<String, String>();        TelephonyManager tm = (TelephonyManager) context                .getSystemService(Context.TELEPHONY_SERVICE);        String imei = tm.getDeviceId();        String imsi = tm.getSubscriberId();        String phoneMode = android.os.Build.MODEL;         String phoneSDk = android.os.Build.VERSION.RELEASE;        map.put("imei", imei);        map.put("imsi", imsi);        map.put("phoneMode", phoneMode+"##"+phoneSDk);        map.put("model", phoneMode);        map.put("sdk", phoneSDk);        return map;    }

9.按两次返回键后退出应用

 @Override    public boolean onKeyDown(int keyCode, KeyEvent event)    {        if (keyCode == KeyEvent.KEYCODE_MENU)        {            return false;        }        // 按两次返回键后退出应用        if (AppTools.getFirstData(IndexActivity.this))        {            if (keyCode == KeyEvent.KEYCODE_BACK)            {                if (System.currentTimeMillis() - touchTime > 1500)                {                    Toast.makeText(IndexActivity.this, "再按一次退出应用", Toast.LENGTH_SHORT).show();                    touchTime = System.currentTimeMillis();                }                else                {                    ScreenManager.getScreenManager().popAllActivityExceptMain(IndexActivity.class);                    finish();                }            }            return true;        }        else        {            return super.onKeyDown(keyCode, event);        }    }

更多相关文章

  1. JS判断手机操作系统(ios或android)并跳转到不同下载页面
  2. android 获取手机电话号码和短信内容
  3. 安卓自学,手机上的横竖屏切换,状态栏隐藏
  4. android手机内存中的文件操作
  5. 界面有Edittext时有些手机进入界面会自动弹出键盘,消除自动弹出键
  6. java判断http请求是否为为手机端来源
  7. Android开发之获取常用android设备参数信息
  8. android-屏幕分辨率那点事儿
  9. android:duplicateParentState属性解释

随机推荐

  1. CentOS 6.5 + Nginx 1.8.0 + PHP 5.6(wit
  2. composer的使用以及安装
  3. PHP的$ _GET和URL重写
  4. 使用ASIHTTPRequest从iOS上传图像
  5. PHP空间函数类似于ASP空间()
  6. 在IE6中JS不执行的问题处理
  7. PHP XAMPP配置PHP环境和Apache80端口被占
  8. 【PHP面向对象(OOP)编程入门教程】15.sta
  9. 看见有人发帖“php能做什么”,我不得不也
  10. Laravel Auth只验证管理员/超级用户