安卓 TextView 设置 每行最多显示8个字
时间: 2023-12-29 11:02:09 浏览: 225
textView限制输入字数
你可以使用 `android:maxEms` 属性来限制每行最多显示的字符数。在你的 TextView 中添加以下属性:
```
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxEms="8"
android:singleLine="false"
android:text="Your text goes here" />
```
这里的 `android:maxEms` 属性设置为 8,表示每行最多显示 8 个字符。同时,需要将 `android:singleLine` 属性设置为 `false`,以确保文本可以换行。
阅读全文