我们可以使用 Appecelerator Titanium 中的视图进行放大和缩小吗?
是否可以像使用双击或捏合功能一样放大和缩小视图?如果是这样的话,放大后我们还能得到相同的坐标还是不同的坐标呢?
如果我有一个高度为 100、宽度为 100 的视图,当我单击视图的末尾时,它显然会返回 y 位置为 100。
我的另一个问题是使用捏合或双击进行缩放后,它会返回结束 y 坐标吗? -纵坐标为 100 还是会因为我们放大而返回不同的值?
如果这不可能,有其他选择吗?
谢谢。
Is it possible to zoom in and zoom out in a view just like using a double tap or pinch functionality? If so can we still get the same coordinates or different coordinates after zooming in?
If I have a view of height 100 and width 100 and when I click on the end of the view it obviously returns y-position as 100.
Another question I have is after zoom using a pinch or doubletap, will it return the end y co-ordinate as 100 or will it return a different value since we zoomed-in?
If this is not possible, is there an an alternative?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将视图添加到滚动视图。完成此操作后,您可以通过捏合来放大和缩小。
创建此视图后,您可以向其中添加视图
scrollView.add(view)
希望这会有所帮助!
杰乌
You can add the view to a scrollView. When you've done this you can zoom in and out by pinching.
After you create this you can add your view to it
scrollView.add(view)
Hope this helps!
Tjeu