I checked by adding below code in that window for detecting the touch events
Code:
void CIndicatorIcon::HandlePointerEventL(const TPointerEvent& aPointerEvent)
{
// Remember to call base class implementation. Then your child controls
// receive pointer events.
CCoeControl::HandlePointerEventL(aPointerEvent);
// Rest of your code
if (aPointerEvent.iType == TPointerEvent::EButton1Down)
{
// TODO: What to do when this ui control receives pen down event...
TApaTask aThisTask(iEikonEnv->WsSession());
aThisTask.SetWgId(CEikonEnv::Static()->RootWin().Identifier());
aThisTask.BringToForeground();
}
}
This is working fine on emulator...
But if I deploy same application on actual phone its not working...!!!!
Can you plz tell what will be the possible resons for this???
I have added all Express sign capabilities in my application....