Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有得到这个“可滚动文本视图”部分..它搞砸了..
您实际上不需要使用 ScrollView。
只需设置
android:maxLines = "a number" android:scrollbars = "vertical"
布局的 xml 文件中 TextView 的属性。
然后使用:
yourTextView.setMovementMethod(new ScrollingMovementMethod())
在你的代码中。
它会自动滚动。