Re: [android-developers] Re: Start the CallLog Activity via Intent

2009-12-09 Thread nvstp
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 wrote: > > I am really desperate right now. Does nobody know what I am doing > wrong?

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-29 Thread Matt
I am really desperate right now. Does nobody know what I am doing wrong? On 28 Sep., 23:58, Matt 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 wrote: > > > unfortunately that did not wo

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-28 Thread Matt
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 wrote: > unfortunately that did not work either. > > On 28 Sep., 00:29, iPaul Pro wrote: > > > Intent i = new Intent(); > > i.setAction(Intent.ACTION_CALL

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-27 Thread Matt
unfortunately that did not work either. On 28 Sep., 00:29, iPaul Pro wrote: > Intent i = new Intent(); > i.setAction(Intent.ACTION_CALL_BUTTON); > startActivity(i); > > Paul > > On Sep 25, 7:43 pm, Matt wrote: > > > Hi, > > > I have the following code in my application: > > >   Intent i = new I

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-27 Thread Matt
here is the error message: Writing exception to parcel java.lang.IllegalArgumentException: Unknown URL at com.android.providers.contacts.ContactsProvider.getType (ContactsProvider.java:1668) at android.content.ContentProvider$Transport.getType (ContentProvider.java:134) at and

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-27 Thread iPaul Pro
Intent i = new Intent(); i.setAction(Intent.ACTION_CALL_BUTTON); startActivity(i); Paul On Sep 25, 7:43 pm, Matt 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);

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-27 Thread Mark Murphy
Matt wrote: > No one? I'm still trying to bring up the call log but so far without > success. Even the slightest hint could be helpful. You didn't indicate what error you got. You can find this out by examining adb logcat, DDMS, or the DDMS perspective in Eclipse, looking for the stack trace. --

[android-developers] Re: Start the CallLog Activity via Intent

2009-09-27 Thread Matt
No one? I'm still trying to bring up the call log but so far without success. Even the slightest hint could be helpful. On 26 Sep., 01:43, Matt wrote: > Hi, > > I have the following code in my application: > >   Intent i = new Intent(); >   i.setAction(Intent.ACTION_VIEW); >   i.setData(android.