English 中文(简体)
Android voice call logging
原标题:

I d like to have some code be notified of any incoming and outgoing voice calls. I need to grab all the following:

  • If it was an incoming or outgoing call
  • Number dialed, or incoming caller-id phone number
  • Duration of call, or if it was a missed call

It would also be really slick if I could get more contact info, specifically the contact name, if the phone number matches up to someone in the phone s contacts list, but that part is optional.

I need my code to get this information pretty much as soon as a call has ended. Maybe I m just not searching for the correct terms but I m having a real hard time finding any examples of how I would accomplish this.

If someone could provide a code example that accomplishes this, along with the permissions and any sort of broadcast receiver type of setup I would need in the manifest file, that would be great.

最佳回答

You should be able to directly watch outgoing calls by listening for android.intent.action.NEW_OUTGOING_CALL broadcast events, by setting the android.permission.PROCESS_OUTGOING_CALLS permission in your manifest.

I imagine this should work for other devices; at least on my HTC Hero this gives me an Intent full of extras including the phone number being called, the contact s name plus URIs for the contact and individual number being called.

As for getting full information on incoming or missed calls (and indeed outgoing calls), I believe the solution as Mark mentions is to watch the CallLog content provider for changes, or poll after the relevant PhoneStateListener events have been fired.

问题回答

A PhoneStateListener and the CallLog content provider will give you most, if not all, of what you need.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签