Breezy wrote: > Hmmm, I used that but I can't decipher what it's saying....
<snip> > 11-21 06:04:48.487: ERROR/AndroidRuntime(776): Caused by: > java.lang.NullPointerException > 11-21 06:04:48.487: ERROR/AndroidRuntime(776): at > com.example.comparibook.CompariBook.onCreate(CompariBook.java:65) When examining a stack trace, look for the "Caused by:" portion, as most of the time that will indicate where your error is. In this case, you have a NullPointerException on line 65 of CompariBook.java. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 2.8 Available! -- 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

