You can try ACTION_PICK on android.provider.CallLog.Calls.CONTENT_URI.
I do not know if it supports that particular action, but it should be
easy enough for you to try.

On Tue, Oct 12, 2010 at 5:49 PM, Muhammad Bilal <se.bi...@gmail.com> wrote:
> Hi,
>
> I am trying to locate the intent to load the call log view , does
> android platform provide that out of the box? the functionality that i
> am looking is just like picking a contact from address book , you can
> do that by using intent.ACTION_PICK and using the people content URI
>
> Intent intent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI);
>
> It 'll show all the contacts of the system and on selecting one it 'll
> return the data URI of that particular contact by using callback if
> you start it by using startActivityForResult .
>
> could we do the same with call log as well is their any intent for
> that ???, i would really appreciate your help.
>
> Thanks
>
>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android 2.2 Programming Books: http://commonsware.com/books

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to