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?