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.
我更改了 TextView 的内容,但它显示为已包装。我做错了吗?
textView.text = “a new content”;
一旦你改变了内容,你必须通过调用 textView.requestLayout() 来通知布局管理器。有关详细信息,请参阅布局概述中的“强制重做视图的布局” 。基本上,布局管理器只检测浏览器的大小调整和视图可见性的变化。
当然,你可以自己设置宽度。那么,是否换行就看你设置的宽度和内容了。