ikalbeniz wrote: > Hi, > > My app crashes when i call a ListActivity from an Activity. I have > searched on internet and many people ask the same but i have not found > any response. The only person i have found that solves the problems > says that he solved changin manifest but he does not say nothing else. > > I i put the ListAvtivity as main activity in manifest app works ok > buet if a set an Activity as main activity an then call ListActivity > like: > > Intent searchAct = new Intent(this, SearchResult.class); > startActivity(searchAct); > > then my app crashes.. > > Des anybody know what happens?
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine the stack trace associated with the crash. This will tell you what is going wrong. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

