The method you start a internal activity is not correct. So it tells you
that *"No Activity found to handle
Intent { act=android.intent.action.VIEW dat=content://call_log }"*On Wed, Sep 30, 2009 at 06:24, Matt <[email protected]> wrote: > > I am really desperate right now. Does nobody know what I am doing > wrong? > > On 28 Sep., 23:58, Matt <[email protected]> wrote: > > So it obviously cannot find an activity that can handle the Intent. > > Does somebody know why? Wrong URI? Wrong action? > > > > On 28 Sep., 02:04, Matt <[email protected]> wrote: > > > > > unfortunately that did not work either. > > > > > On 28 Sep., 00:29, iPaul Pro <[email protected]> wrote: > > > > > > Intent i = new Intent(); > > > > i.setAction(Intent.ACTION_CALL_BUTTON); > > > > startActivity(i); > > > > > > Paul > > > > > > On Sep 25, 7:43 pm, Matt <[email protected]> wrote: > > > > > > > Hi, > > > > > > > I have the following code in my application: > > > > > > > Intent i = new Intent(); > > > > > i.setAction(Intent.ACTION_VIEW); > > > > > i.setData(android.provider.CallLog.CONTENT_URI); > > > > > startActivity(i); > > > > > > > I want to bring up the CallLog activity, but when I run my > application > > > > > I get an error, that the application has stopped unexpectedly. Why > > > > > does this happen and how can I display the CallLog? Using > > > > > > > i.setData(android.provider.CallLog.Calls.CONTENT_URI); > > > > > > > does not give me an error, but brings up the dialer - not exactly > what > > > > > I want. ;-) I tried displaying the Contacts with > > > > > > > i.setData(android.provider.Contacts.People.CONTENT_URI); > > > > > > > and that works flawlessly. Any help is highly appreciated! > > > > > > > Best wishes, > > > > > Matt > --~--~---------~--~----~------------~-------~--~----~ > 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

