Hi;
I try to suppress call dialog box when there is an incoming call. At Ringing status I got the caller number and try to show my animation, then at HangingUp status I try to close my animation. My Animation class draws bitmap to screen. But I got View srv 11 error, I think because of trying to do asynchronized event while doing synchronized event. My code is like that :
void RunL()
{
.....
case ERingingStatus:
{
iAnimationObserver->ShowAnimation();
}
break;
case EHangingUpStatus:
{
iAnimationObserver->CloseAnimation();
}
.....
SetActive();
}
How can I insert my asynchronized event into synchronized event?

Reply With Quote

