Titanium appcelerator 图像视图加载事件侦听器不适用于 android
我有一个图像视图,当图像加载时我想执行一个操作,例如警报。我正在使用 eventListener 方法来实现此操作。 这是我的代码
imageView.addEventListener('load', function()
{
alert(1);
});
,它在 iPhone 上运行良好,但在 Android 上却没有触发任何东西, 如何在android中实现这一点? 多谢。
i have an image view, when the image loads i want to make an action, for example an alert.I'm using eventListener method to implement this.
here's my code
imageView.addEventListener('load', function()
{
alert(1);
});
this workd fine with iphone, but not firing anything with android,
how can achieve this within android?
thanks alot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,Appcelerator 尚未在 Titanium Mobile 中解决此问题,但是以下 解决方法可用于远程和本地图像以达到您想要的结果。
Unfortunately Appcelerator has not resolved this issue in Titanium Mobile quite yet, however the following workaround may be used for both remote and local images to achieve your desired result.