android TextView各种偏方

来源:互联网 发布:减肥吃什么知乎 编辑:程序博客网 时间:2024/06/05 10:19

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

原创粉丝点击