android textview 文字超长 可滑动
时间: 2023-08-01 13:13:08 浏览: 136
Android 自定义TextView实现滑动解锁高亮文字
你可以在布局文件中将 TextView 放在一个 ScrollView 中,这样当文本超出 TextView 的边界时,用户就可以通过滚动视图来查看全部文本。以下是一个示例代码:
```xml
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Your long text here"
android:maxLines="10"
android:scrollbars="vertical" />
</ScrollView>
```
在这个示例中,我们使用 ScrollView 包裹 TextView,并设置了 android:scrollbars="vertical" 属性,使得在文本超出 TextView 边界时,垂直滚动条会出现。你可以根据需要调整 android:maxLines 属性来控制 TextView 的行数。
阅读全文