Niko68 0 Newbie Poster

I am working on an Android VoIP solution and I had difficulties with some source codes during the development process. My library is provided by the Ozeki VoIP SIP SDK so I have found a good solution among their descriptions.
The following program code shows how I can handle the physical buttons of a mobile device. These instructions should be placed in the creationComplete handler of the application.

1.  if(Capabilities.cpuArchitecture=="ARM")  
2.  {  
3.          NativeApplication.nativeApplication.addEventListener(Event.ACTIVATE, handleActivate, false, 0, true);  
4.          NativeApplication.nativeApplication.addEventListener(Event.DEACTIVATE, handleDeactivate, false, 0, true);  
5.          NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, handleKeys, false, 0, true);  
6.  }  

If you require more help for your project then you may visit http://voip-sip-sdk.com/p_456-voip-android-integration-voip.html.

Regards,
Niko