Menu
  • HOME
  • TAGS

Implicit Intent with user-specified action

android,action,activitynotfoundexception,android-implicit-intent

Add the default category to your intent filter. <intent-filter> <action android:name="course.labs.activitylab.MY_ACTION" /> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> ...

ActivityNotFoundException even actions declared for Fragment

android,fragment,android-fragmentactivity,activitynotfoundexception

Your Fragment3.class should extend Activity and this should be declared in AndroidManifest.xml.

Get Image from gallery cause no activity found error in activity resulte

android,android-image,android-gallery,activitynotfoundexception

try:- Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Picture"), RESULT_LOAD_IMAGE); ...