表格布局 - 固定列 - android
我能够实现带有标题(行)和列 1 的表格布局,如图所示。但我希望即使表格水平滚动,也能在屏幕上持续显示 Col1。 有解决办法吗?
i am able to implement the table layout with header (row) and the column1 as in the picture. But I wish to display Col1 constantly on the screen even when the table is scrolled horizontally.
any work around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建 2 个不同的 UI 元素,
第 1 列作为 ListView,其余作为 TableLayout。
您需要捕获 UI 组件上的触摸事件并将其传递给另一个组件,以便两个组件的滚动同步。
这就是我的观点,也可以有不同的解决方案。
You need to create 2 different UI elements
Column 1 as ListView and rest as a TableLayout.
You need to capture the touch event on the UI Component and the pass it to the other so that scroll of both the component are in sync.
Thats my opinion, there can be a different solution to it as well.