Hi!

I want to get informed in a service about outgoing calls! As far as i
have seen its only possible with the CallLog. I found an example like
this:

          Cursor c = getContentResolver().query(
                    android.provider.CallLog.Calls.CONTENT_URI,
                    null, null, null,
                    android.provider.CallLog.Calls.DATE + " DESC");
          startManagingCursor(c);

The problem is, that i cannot invoke getContentResolver because the
class i want to use doesn´t provide it. I found out that you need a
class that excents Activity to use this construct. Is it also possible
in another way?

Thanks
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to