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

android:ems     setEms(int)

使TextView恰好是这么多ems宽。


当前回答

在Android中添加其他答案,Ems的大小,默认情况下,可以在每种语言和输入中有所不同。

这意味着如果您希望为文本字段设置最小宽度(由字符数定义),则必须根据Ems属性的字体和字体大小正确计算Ems并设置它。

对于那些在这方面有困难的人,你可以自己计算提示大小,以避免混淆Ems:

val tf = TextField()
val layout = TextInputLayout()
val hint = "Hint"

val measureText = tf.paint.measureText(hint).toInt()
tf.width = tf.paddingLeft + tf.paddingRight + measureText.toInt()
layout.hint = hint

其他回答

Em是字体宽度的印刷单位。16号字体中的一个em就是16个点

虽然其他答案已经满足了这个问题(毕竟这是一个3年的问题),但我只是要添加一些信息,并可能修复一些误解。

Em,虽然最初是指印刷中单个“M”字符的宽度,但在数字媒体中,它被转换为相对于字体的点大小的单位(font-size或textSize),换句话说,它使用的是文本的高度,而不是单个“M”的宽度。

在Android中,这意味着当你指定一个TextView的ems时,它使用所说的TextView的textSize作为基础,不包括为重音/变音符添加填充。当你将一个16sp的TextView的ems设置为4时,这意味着它的宽度将是64sp宽,因此解释了@stefan关于为什么一个10 ems宽的EditText能够适合17 'M'的评论。

ems或setEms(n)设置TextView的宽度,以适应n 'M'字母的文本,而不管实际的文本扩展名和文本大小。参见wikipedia Em unit

但仅当layout_width设置为“wrap_content”时。其他layout_width值覆盖ems宽度设置。

添加一个android:textSize属性决定了视图的物理宽度为上面n 'M的文本的textSize *长度。

em基本上是CSS的字体大小属性。

The em and ex units depend on the font and may be different for each element in the document. The em is simply the font size. In an element with a 2in font, 1em thus means 2in. Expressing sizes, such as margins and paddings, in em means they are related to the font size, and if the user has a big font (e.g., on a big screen) or a small font (e.g., on a handheld device), the sizes will be in proportion. Declarations such as text-indent: 1.5em and margin: 1em are extremely common in CSS.

来源:https://www.w3.org/Style/Examples/007/units

它是在给定的英文字体大小下字母M的宽度。 所以2em是给定字体中字母M宽度的两倍。 对于非英文字体,它是该字体中最宽字母的宽度。这个宽度大小(以像素为单位)与英文字体中M的宽度大小不同,但仍然是1em。 所以如果我使用英文字体的12sp文本,1em相对于这个12sp英文字体;使用12sp的意大利字体得到的1em像素宽度与英文字体不同。