Appcelerator Titanium - 表行中的水平滚动
我有一个表格,我想要水平滚动的行。当我尝试向行添加可滚动视图时,应用程序崩溃了。有什么特殊的方法可以做到这一点吗?基本上,我动态地将项目添加到每一行,如果溢出,我希望旧项目从左侧滚动,但仍然可以检索。
I have a table that I want to have horizontally scrolling rows. When I tried adding a scrollable view to a row, it crashed the app. Is there a particular way to do this? Basically, I'm adding items to each row dynamically and if it overflows I want the older items to scroll off the left, but still be retrievable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要添加滚动视图,只需使用常规视图并在添加项目时更新宽度并自行滚动视图。
您必须弄清楚如何通过跟踪触摸开始和触摸结束来向左和向右滚动视图。
不过,您可能想找到替代的 UI 方法
dont add a scroll view just use a regular view and update the width as items are added and scroll the view yourself.
you will have to figure out how scroll the view to the left and right by tracking touch start and touch end.
you might want to find an alternate UI approach though
为什么不使用布局属性...我的意思是垂直或水平。
现在将行添加到该水平视图中,最后将 TableView 添加到垂直视图中。
Why don't use layout property... i mean vertical or horizontal.
Now add your rows to this horizontal view and finally your TableView to Vertical View.