在 symbian 中集成 ZXing 条码阅读器

发布于 2024-12-27 12:07:03 字数 111 浏览 3 评论 0原文

我正在尝试将 ZXing 条形码集成到我的 symbian 应用程序中,但它工作正常 仅在 UI 类中,但我想集成到列表框视图中,以便当我单击时 列表项 Zxing 必须打开。这可能吗? 有人对此有想法吗?

I am trying to integrating ZXing barcode in my symbian application but i its working
only in the UI class but i want to integrate in listbox view so that when i click
list item Zxing has to open. is this possible?
anybody have idea on this?

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

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

发布评论

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

评论(1

澉约 2025-01-03 12:07:03

您只想在单击列表框项目时打开 zxing 相机视图吗?
然后你需要捕获列表框事件

void CCasesContainer::HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aEventType) {  
    if ((aEventType == MEikListBoxObserver::EEventEnterKeyPressed)  
        || (aEventType == MEikListBoxObserver::EEventItemClicked)) {  
    TInt currentItem(iListBox->CurrentItemIndex());  
    // open the zxing view smth like  
    DeactivateActiveViewL();  
    CAknViewAppUi::ActivateLocalViewL(TUid::Uid(zxingView));  
    }
}

要了解更多视图在 symbian 中如何工作的信息,请从此处 或那里

Do you just want to open zxing camera view when clicking listbox item?
Then you need to catch listbox event

void CCasesContainer::HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aEventType) {  
    if ((aEventType == MEikListBoxObserver::EEventEnterKeyPressed)  
        || (aEventType == MEikListBoxObserver::EEventItemClicked)) {  
    TInt currentItem(iListBox->CurrentItemIndex());  
    // open the zxing view smth like  
    DeactivateActiveViewL();  
    CAknViewAppUi::ActivateLocalViewL(TUid::Uid(zxingView));  
    }
}

To learn more how views work in symbian start from here or there

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