android TextView setEms 方法名字

来源:互联网 发布:上海政府数据开放平台 编辑:程序博客网 时间:2024/05/29 02:59

android TextView setEms() 作用是设置textview的字符宽度。但是名字很奇怪。

 

    /**     * Makes the TextView exactly this many ems wide     *     * @attr ref android.R.styleable#TextView_ems     */    @android.view.RemotableViewMethod    public void setEms(int ems) {        mMaxWidth = mMinWidth = ems;        mMaxWidthMode = mMinWidthMode = EMS;        requestLayout();        invalidate();    }

 

An em is a unit in the field of typography

 

em是一个印刷排版的单位,表示字宽的单位。 em字面意思为:equal M   (和M字符一致的宽度为一个单位)简称em。

 ems是em的复数表达。


em 的具体来历? 

http://en.wikipedia.org/wiki/Em_%28typography%29


2 0