Logging calls after hanging up on smart phones - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:04:51Zhttp://stackoverflow.com/feeds/question/756962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/756962/logging-calls-after-hanging-up-on-smart-phones0Logging calls after hanging up on smart phonesjayrdub2009-04-16T16:34:29Z2009-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#7570332Answer by Richard for Logging calls after hanging up on smart phonesRichard2009-04-16T16:49:44Z2009-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#7571545Answer by Soonil for Logging calls after hanging up on smart phonesSoonil2009-04-16T17:16:24Z2009-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#7629481Answer by Isaac Waller for Logging calls after hanging up on smart phonesIsaac Waller2009-04-18T05:15:45Z2009-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>