2
1
|
The given example produces an Exception (android.content.ActivityNotFoundException: No Activity found to handle Intent)
on my SGS2 Android Version 2.3.3. Do you have any ideas, what can be going wrong? An another intent request (e.g. selecting a contact from the address book) works fine.
Thank you, Artjom
| ||
|
2
|
The device does not support that activity. This is not unheard of. Either catch the exception and let the user know, or use
PackageManager and queryIntentActivities() to see if anything will respond to your Intent in advance of calling startActivity() . | ||
|
3
|
You need to set permission in manifest file also.
|
0
|
It appears that there is no documented
Intent for launching the alarm clock in the Android SDK. Having said that, here are a few resources you can try that should get you around that: |