android textview 文字间距
时间: 2023-08-01 17:13:20 浏览: 97
设置TextView字间距和行间距-jeecg教程,完整版
要设置 Android TextView 文字之间的间距,可以使用 `LetterSpacing` 属性。`LetterSpacing` 属性可以设置字符之间的间距,单位为像素或者 em。例如,将字符之间的间距设置为 0.1em:
```xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello world!"
android:letterSpacing="0.1em" />
```
注意,`LetterSpacing` 属性只在 Android 4.1 及以上版本才支持。在低版本中,这个属性会被忽略。
阅读全文