RSS订阅优然探索
你的位置:首页 » 未分类 » 正文

android TextView setEms 方法名字

选择字号: 超大 标准 发布时间:2017-7-12 9:38:23 | 作者:admin | 0个评论 | 人浏览

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

 

[java] view plain copy
  1. /** 

  2.  * Makes the TextView exactly this many ems wide 

  3.  * 

  4.  * @attr ref android.R.styleable#TextView_ems 

  5.  */  

  6. @android.view.RemotableViewMethod  

  7. public void setEms(int ems) {  

  8.     mMaxWidth = mMinWidth = ems;  

  9.     mMaxWidthMode = mMinWidthMode = EMS;  

  10.   

  11.     requestLayout();  

  12.     invalidate();  

  13. }  

 

[html] view plain copy
  1. 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

标签:

猜你喜欢

发表评论

必填

选填

选填

必填,不填不让过哦,嘻嘻。

记住我,下次回复时不用重新输入个人信息

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。