我们可以使用 Appecelerator Titanium 中的视图进行放大和缩小吗?

发布于 2024-11-18 01:50:56 字数 231 浏览 3 评论 0原文

是否可以像使用双击或捏合功能一样放大和缩小视图?如果是这样的话,放大后我们还能得到相同的坐标还是不同的坐标呢?

如果我有一个高度为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁人与我共长歌 2024-11-25 01:50:56

您可以将视图添加到滚动视图。完成此操作后,您可以通过捏合来放大和缩小。

var scrollView = Titanium.UI.createScrollView({
    contentWidth: 'auto',
    contentHeight: 'auto',

    top: 0,
    bottom: 0,

    showVerticalScrollIndicator: true,
    showHorizontalScrollIndicator: true,

    //Here you can determine the max and min zoom scale
    maxZoomScale: 100,
    minZoomScale: 0.1,

//With this property you can set the default zoom
    zoomScale: 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.

var scrollView = Titanium.UI.createScrollView({
    contentWidth: 'auto',
    contentHeight: 'auto',

    top: 0,
    bottom: 0,

    showVerticalScrollIndicator: true,
    showHorizontalScrollIndicator: true,

    //Here you can determine the max and min zoom scale
    maxZoomScale: 100,
    minZoomScale: 0.1,

//With this property you can set the default zoom
    zoomScale: 1
}); 

After you create this you can add your view to it

scrollView.add(view)

Hope this helps!

Tjeu

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文