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.
我想创建带有文本区域和文本框的聊天窗口lwuit。Textarea 必须能够显示笑脸和着色文本。我用过HtmlComponentlwit 并在滚动条中遇到问题。随着文本内容的大小增加,整个屏幕滚动,包括文本框。我只想滚动 textarea 的内容。
lwuit
HtmlComponent
如何解决?
好吧,您可以使用 Form.setScrollable(false). 然后您只需使用相同的方法将 HTMLcomponent 可滚动设置为“true”,最后将这两个组件(TextArea 和 HTMLComponent)放入不同的 cosntraints(例如 BorderLayout.NORTH 中的 TextArea 和 BorderLayout.CENTER 中的 HTMLComponent)
Form.setScrollable(false)