android TextView setEms 方法名字
选择字号: 超大 标准 发布时间:2017-7-12 9:38:23 | 作者:admin | 0个评论 | 人浏览
Android TextView setEms() 作用是设置textview的字符宽度。但是名字很奇怪。
@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
标签: