On Tue, Jul 27, 2010 at 3:47 AM, Pravin Parulekar <[email protected]>wrote:
> Intent i = new Intent(MainListingA.this, DrawTheatreMap.class); The only thing that sticks out from this is the fact that you're scoping "this". Are you doing this in an inner class or something? Not that is should really matter, I don't think. Try this. Do "startActivity(new Intent(this, DrawTheatreMap.class));" right at the start of your ListActivity, in onCreate. If that works, then there's something wrong with the way you set up or are executing your event handler. If even that doesn't work, you've got bigger issues =P ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- 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

