neeloor2004 wrote: > Hi > I am developing an app with needs to listen to telephony call events. > But android SDK is only giving limited functionalities > CALL_STATE_IDLE > CALL_STATE_RINGING > CALL_STATE_OFFHOOK > > I know how to get above events. What I am interested is to get the > following events like > CALL hold/ swap , CALL Connected, Disconnected (by called party or > caller), answering etc.. > > Could anybody give me an example code or is it a limitation on Android > SDK. If it is SDK limitation how can I get access to telephony > internals
"CALL Connected" is when the device goes into CALL_STATE_OFFHOOK. "CALL Disconnected" is when the device goes into CALL_STATE_IDLE. "CALL hold/ swap" may or may not exist. It is not a supported concept in the SDK. To "get access to telephony internals", you will need to modify the firmware for your own phone. You can access the source code and firmware build instructions at http://source.android.com. Questions on that process should go to the [android-porting] Google Group. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Training: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

