Appcelerator 钛合金 - 拖放
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于android,触摸事件的事件对象中没有可用的globalPoint。
添加以下代码以将触摸视图的点转换为父级点或全局点。
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.