Android textview maxEms与maxLengt 属性

maxlength的作用就是直接限制显示的长度,

android:ems    设置TextView的宽度为N个字符的宽度。但是名字很奇怪。

 [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的复数表达。


你可能感兴趣的:(android开发)