本文介绍了ems是什么意思?(Android 文本视图)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Ems 是什么意思(与 TextView 相关)?例如在

What is meant by Ems (related to a TextView)? For example in

android:ems     setEms(int)

使 TextView 正好有这么多 em 宽.

Makes the TextView be exactly this many ems wide.

推荐答案

android:emssetEms(n) 设置 TextView 的宽度以适合文本n 'M' 字母,与实际的文本扩展名和文本大小无关.参见维基百科 Em 单位

android:ems or setEms(n) sets the width of a TextView to fit a text of n 'M' letters regardless of the actual text extension and text size. See wikipedia Em unit

但仅当 layout_width 设置为 "wrap_content" 时.其他 layout_width 值会覆盖 ems 宽度设置.

but only when the layout_width is set to "wrap_content". Other layout_width values override the ems width setting.

添加一个 android:textSize 属性将视图的物理宽度确定为上面设置的 textSize * 长度为 n 'M' 的文本.

Adding an android:textSize attribute determines the physical width of the view to the textSize * length of a text of n 'M's set above.

这篇关于ems是什么意思?(Android 文本视图)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 16:43