Questions tagged [activitynotfoundexception]

This is a Java exception in the Android API that is thrown when a call to startActivity(Intent) or one of its variants fails because an Activity can not be found to execute the given Intent.

This is a Java exception in the Android API.

This exception is thrown when a call to startActivity(Intent) or one of its variants fails because an Activity can not be found to execute the given Intent.

Link.

97 questions
-1
votes
7 answers

android.content.ActivityNotFoundException on calling new Activity in Android

I'm getting exception 12-12 17:31:18.401: E/AndroidRuntime(18177): FATAL EXCEPTION: main 12-12 17:31:18.401: E/AndroidRuntime(18177): android.content.ActivityNotFoundException: Unable to find explicit activity class…
-2
votes
2 answers

How do I resolve Activity Not Found Exception

In my android app, I've added an activity MainActivity in the manifest file, on navigating to that activity using an inten I get activity not found error asking if I've added it to manifest here is my manifest activity
Iyke
  • 47
  • 10
-2
votes
1 answer

ActivityNotFoundException: Unable to find explicit activity class which was declared in manifest

I'm trying to send content through Intent (I think this is the reason of my error) and I constantly get ActivityNotFoundException. Here's the class which is sending data to Tab1.class (String called temperature) I found similar question on stack…
PiiiTeeeR
  • 45
  • 3
-2
votes
3 answers

Android - Activity not found exception error

I get the following error: android.content.ActivityNotFoundException: Unable to find explicit activity class {ie.ittralee.finalyeartest.finalyeartest/ie.ittralee.finalyeartest.finalyeartest.WiFiDirectActivity}; have you declared this activity in…
Aleksandar Zoric
  • 1,343
  • 3
  • 18
  • 45
-2
votes
2 answers

ActivityNotFoundException even actions declared for Fragment

I have the code below: public class Fragment1 extends Fragment implements View.OnClickListener { Button button; @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle…
-2
votes
1 answer

ActivityNotFoundException calling an intent on android

When I try to execute this code I get an ActivityNotFoundException ,I think it's because I'm trying to call an activity which is not in the manifest but i don't know what I have to add to the manifest file. public boolean…
AFS
  • 317
  • 1
  • 4
  • 7
-5
votes
1 answer

Android appllication stopping unfortunately

My app is crashing in an unexpected way. Whenever I run my app's mainactivity, it gets executed. But when I click the button with ID "R.id.msgnow" my app is crashing. I tried all solutions given previously in stackoverflow, verified my manifest.xml…
Nishant J
  • 17
  • 8
1 2 3 4 5 6
7