Appcelerator 钛合金 - 拖放

发布于 2024-11-09 12:37:55 字数 326 浏览 0 评论 0原文

我是 Appcelerator Titanium 的新手,想问一下,有没有办法在 Android 版 Appcelerator Titanium 中实现拖放操作?我尝试了这里的示例 https://github.com/mcongrove/TiDrop 但它在 Android 上无法正常工作,当我单击该框时,出现以下运行时错误: 类型错误:无法从 null 读取属性“y”(file:///android_asset/Resources/TiDrop.js#34)。谁能帮助我吗?

谢谢你,

I am new to Appcelerator Titanium and would like to ask, is there a way to implement drag and drop in appcelerator titanium for android? I tried the example here https://github.com/mcongrove/TiDrop
but it is not working properly on android, when i click on the box, i get the following runtime error:
Type Error: Cannot read property "y" from null (file:///android_asset/Resources/TiDrop.js#34). can anyone help me?

Thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

茶花眉 2024-11-16 12:37:55

对于android,触摸事件的事件对象中没有可用的globalPoint。
添加以下代码以将触摸视图的点转换为父级点或全局点。

// e is an event object of touch event

e.globalPoint = e.source.convertPointToView({
            x : e.x,
            y : e.y
        }, parentWinObj);

For android there is not globalPoint is available in event object of touch events.
Add following code to convert the touched view's point to the parent's point or global points.

// e is an event object of touch event

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