android textview 文字超长 可滑动
时间: 2023-08-01 08:13:08 浏览: 85
Android之TextView实现文字过长时省略部分或者滚动显示
3星 · 编辑精心推荐
你可以在布局文件的 TextView 中添加以下属性来实现文字超长可滑动:
```xml
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:scrollbars="vertical"
android:scrollbarStyle="insideInset"
android:ellipsize="end" />
```
其中,maxLines 属性表示最多显示几行文字,scrollbars 属性表示显示滚动条,scrollbarStyle 表示滚动条样式,在 TextView 中添加滚动条后需要设置相应的样式,否则默认使用系统样式。ellipsize 属性表示当文字过长时的省略方式,end 表示在结尾处省略。
阅读全文