Hello developers,
I am currently in the process of writing an application that starts with a SplashScreen, moves to the MainMenu activity and from there the user can select an item from the menu and it takes them to another activity. Pretty simple use case. However, when I take the user to any other activity, the back button stops working. If I hit the back button from the main menu, the application is closed. This is great. However, if I navigate from the main menu to another task, and then try to hit the back button, I get a black screen and the application hangs. I'm not sure what code to show that would help solve this problem. I've been tearing my eyes out for the past 4 hours looking at all the different paths, and can't find anything. There is nothing in LogCat after this happens, it's almost like the app just hangs. MainMenu extends ListActivity and looks like so intent = new Intent(this, ProgramListActivity.class); startActivity(intent); ProgramListActivity is a TabActivity which swaps in views dynamically depending on which tab is selected. When the ProgramListActivity first loads, the first tab is selected and the View is populated for that tab (which is a ListActivity). Any help would be greatly appreciated!! Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en