Titanium.Media.showCamera 带有叠加层,传递事件

发布于 2024-11-04 18:27:12 字数 602 浏览 1 评论 0原文

我正在编写一个使用相机的 iOS 应用程序。我想要一个图像(最终是一个或两个控制元素)覆盖在相机图片上。

这已经有效了。但是,覆盖层会阻止 Flash、HDR 和相机选择的默认控制元素接收触摸事件。

下面是我的代码。有没有办法让myOverlay通过或者忽略事件?

var overlayImage = Titanium.UI.createImageView({
    width: 100,
    height: 100,
    backgroundImage: 'img/picture.png'
});
var myOverlay = Titanium.UI.createView();
myOverlay.add(overlayImage);

Titanium.Media.showCamera({
    success: successMethod,
    error: errorMethod,
    cancel: function(e) {},
    overlay: myOverlay,
    saveToPhotoGallery: true,
    allowEditing: false,
    mediaTypes: ['public.image']
});

I am writing an iOS application that utilizes the camera. I want an image (and ultimately a control element or two) overlayed over the camera picture.

This already works. However the overlay prevents the default control elements for Flash, HDR and camera selection from receiving touch events.

Below is my code. Is there a way to make myOverlay pass through or ignore events?

var overlayImage = Titanium.UI.createImageView({
    width: 100,
    height: 100,
    backgroundImage: 'img/picture.png'
});
var myOverlay = Titanium.UI.createView();
myOverlay.add(overlayImage);

Titanium.Media.showCamera({
    success: successMethod,
    error: errorMethod,
    cancel: function(e) {},
    overlay: myOverlay,
    saveToPhotoGallery: true,
    allowEditing: false,
    mediaTypes: ['public.image']
});

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

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

发布评论

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

评论(1

墨落成白 2024-11-11 18:27:12

您可以尝试 var myOverlay = Titanium.UI.createView({touchEnabled: false}); ,它应该根据 Appcelerator 文档传递事件。

You can try var myOverlay = Titanium.UI.createView({touchEnabled: false}); and it should pass events according to the Appcelerator docs.

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