Android 如何获取系统字体大小

2019-05-21 14:50:57


public static float getFontSize() {

        Configuration mCurConfig = new Configuration();

        try {

            mCurConfig.updateFrom(ActivityManagerNative.getDefault().getConfiguration());

        } catch (RemoteException e) {

            Log.w(TAG, "Unable to retrieve font size");

        }

 

        Log.w(TAG, "getFontSize(), Font size is " + mCurConfig.fontScale);

        return mCurConfig.fontScale;

 

    }


  • 2017-02-24 16:53:58

    PHP 中的Closure

    Closure,匿名函数,又称为Anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

  • 2017-03-02 09:45:27

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。