Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using startActivity to call another Activity and I get the "Activity Not Found Exception". Here is my code:

  TextView textView = (TextView) itemClicked;
  String strText = textView.getText().toString();
  String key = "symptom";
  Intent mIntent = new Intent(symptomActivity.this, symptomRemedyActivity.class);
  Bundle mBundle = new Bundle();
  mBundle.putString(key, strText);
  mIntent.putExtras(mBundle);
  startActivity(mIntent);

Here is the Logcat output:

INFO/ActivityManager(59): Displayed activity com.android.homeopathy/.HomeopathyActivity: 5542 ms (total 39089 ms)
INFO/ARMAssembler(59): generated scanline__00000077:03545404_00000004_00000000 [ 47 ipp] (67 ins) at [0x3283e0:0x3284ec] in 627000 ns
INFO/ActivityManager(59): Starting activity: Intent { cmp=com.android.homeopathy/.symptomActivity }
INFO/ActivityManager(59): Displayed activity com.android.homeopathy/.symptomActivity: 2706 ms (total 2706 ms)
INFO/ActivityManager(59): Starting activity: Intent { cmp=com.android.homeopathy/.symptomRemedyActivity (has extras) }

Here is the debug window output:

    Thread [<1> main] (Suspended (exception ActivityNotFoundException)) 
Instrumentation.checkStartActivityResult(int, Object) line: 1404    
Instrumentation.execStartActivity(Context, IBinder, IBinder, Activity, Intent, int) line: 1378  
symptomActivity(Activity).startActivityForResult(Intent, int) line: 2817    
symptomActivity(Activity).startActivity(Intent) line: 2923  
symptomActivity$1.onItemClick(AdapterView, View, int, long) line: 67    
ListView(AdapterView).performItemClick(View, int, long) line: 284   
ListView.performItemClick(View, int, long) line: 3382   
AbsListView$PerformClick.run() line: 1696   
ViewRoot(Handler).handleCallback(Message) line: 587 
ViewRoot(Handler).dispatchMessage(Message) line: 92 
Looper.loop() line: 123 
ActivityThread.main(String[]) line: 4627    
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]  
Method.invoke(Object, Object...) line: 521  
ZygoteInit$MethodAndArgsCaller.run() line: 868  
ZygoteInit.main(String[]) line: 626 
NativeStart.main(String[]) line: not available [native method]  

symptomRemedyActivity is another activity in my project. Is there something I need to do like importing symptomRemedyActivity so that startActivity can see symptomRemedyActivity, to remove this "Activity Not Found Exception"?

share|improve this question
If you were using eclipse and/or looking at the logcat it would ask you if you declared it in the manifest – Falmarri Aug 20 '10 at 17:51
I am using eclipse with logcat. Logcat says nothing about the manifest. I have listed the logcat output in my question along with the Debug window output. – James Testa Aug 20 '10 at 18:03

5 Answers

Did you list the activity (symtomRemedyActivity) within your AndroidManifest.xml file?

share|improve this answer
No I didn't. I'll try that. – James Testa Aug 20 '10 at 17:43
I added activity (symtomRemedyActivity) within my AndroidManifest.xml file, did a Refresh and I still get the error. – James Testa Aug 20 '10 at 17:54
This is exactly the problem I was just having. – Jahmic May 11 '11 at 10:32

I know this is an old post, but it's on top of the google search at the moment, so for anyone who would come here later: ActivityNotFound can be caused by unhandled exceptions in your onCreate in the activity you're trying to create. It took me a while to notice that I was causing a nullPointerException there, because I wasn't looking for it.

share|improve this answer
This not the answer to the question. I suggest you can add a comment to the question in this case. – success_anil Jun 17 '11 at 13:55
And this is exactly what was making chaos for me too :-) – nemesisfixx Feb 7 at 15:08

Make sure you have added the following to the Manifest File

    <activity
        android:name=".YourActivity"
        >
    </activity>
share|improve this answer

Stuck with the same error for an hour only to realize that I have to clean and build again. Apparently, some times changes in xml do not reflect until we clean and rebuild.

share|improve this answer

If your two activities (symptomActivity and symptomRemedyActivity) are in different packages, you have to declare in Android Manifest the package name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.