Have you tried just doing the same with the CallLog content provider? -
CallLog.Calls.CONTENT_URI

On Mon, May 31, 2010 at 12:46 PM, mike <[email protected]> wrote:

> hi guys,
>
> is there a way to listen to changes in Calls.CallLog.
>  i have listen to SMS inbox changes using
>
> String url = "content://sms/";
>                Uri uri = Uri.parse(url);
>
>                getContentResolver().registerContentObserver(uri, true,
>                                new MyInboxListener(handler));
>
>                Uri Sms = Uri.parse("content://sms/inbox");
>                Cursor c = getContentResolver().query(Sms, null, null, null,
> null);
>
> is there a way to listene to CallLog using registerContentObserver.
>
> regards,
> Mike
>
> --
> 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]<android-developers%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

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