Logging calls after hanging up on smart phones - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:04:51Z http://stackoverflow.com/feeds/question/756962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/756962/logging-calls-after-hanging-up-on-smart-phones 0 Logging calls after hanging up on smart phones jayrdub 2009-04-16T16:34:29Z 2009-04-18T05:15:45Z <p>In the various smartphone APIs/SDKs, I was wondering if it is possible to prompt a user if they'd like to log a phone call after they hang up. The most basic functionality would be after calling out or receiving a call, the phone would ask</p> <p>Do you want to log the call to|from 555-555-5555?<br /> Yes | No | Never this number</p> <p>(then it might take the user to a small form and then post the info to a webservice)</p> <p>The business use is for lawyers who have company phones and need to track billing.</p> <p>this is a bit different question than <a href="http://stackoverflow.com/questions/341622/accessing-the-iphones-call-log-with-the-iphone-sdk">http://stackoverflow.com/questions/341622/accessing-the-iphones-call-log-with-the-iphone-sdk</a>, and I'm curious about blackberries</p> <p>Thanks</p> http://stackoverflow.com/questions/756962/logging-calls-after-hanging-up-on-smart-phones/757033#757033 2 Answer by Richard for Logging calls after hanging up on smart phones Richard 2009-04-16T16:49:44Z 2009-04-16T16:49:44Z <p>Blackberries have call logging out of the box. Blackberry Enterprise Server activated units sync the log with the server.</p> http://stackoverflow.com/questions/756962/logging-calls-after-hanging-up-on-smart-phones/757154#757154 5 Answer by Soonil for Logging calls after hanging up on smart phones Soonil 2009-04-16T17:16:24Z 2009-04-16T17:16:24Z <p>On an Android phone you can register a <a href="http://developer.android.com/reference/android/telephony/PhoneStateListener.html" rel="nofollow">PhoneStateListener</a> to receive a notification of when a call hangs up and log the number by whatever method you wish.</p> http://stackoverflow.com/questions/756962/logging-calls-after-hanging-up-on-smart-phones/762948#762948 1 Answer by Isaac Waller for Logging calls after hanging up on smart phones Isaac Waller 2009-04-18T05:15:45Z 2009-04-18T05:15:45Z <p>On iPhone, <strong><em>no way.</em></strong><br /> Apple would have to allow (shudder) background applications. </p> <p>Note: Shraptnel is right, you may be able to monitor the phone state with some private API's if you jailbroke your phone and ran your program in the background.</p>