Languages

Menu
Sites
Language
[Solved] Popup is not visible

Hi all,

I am coding image processing app. I load the photo/ or capture it and then  process it inside OnAppControlCompleteResponseReceived

void TestForm::OnAppControlCompleteResponseReceived(const AppId &appId,
        const Tizen::Base::String &operationId,
        const Tizen::App::AppCtrlResult appControlResult,
        const Tizen::Base::Collection::IMap* pResultList) {

       ShowWaitingPopup();

       DoImageProcessing();

       HideWaitingPopup();

}

 

Popup is not getting visible..It seems that the image processing is blocking the app UI (it takes 3 seconds or so)... I don't wish to use threading... I used similar code in bada but now it seems the UI does not get redrawn before the image processing funtion return

any idea?

 

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

1 Replies
Just use a timer to delay the execusion of DoImageProcessing() for half a second or so and everyhting will be OK