I have a class extended by TabActivity that creates multiple tabs. One tab is extended by ListActivity and should open a new activity when you choose an option in the list. The problem is that this code will lose the tabs (opening a new activity in the ListActivity that is member of the TabActivity):
Intent myIntent = new Intent(view.getContext(), MyOtherActivity.class);
startActivity(myIntent);
Is there a solution to this? Thanks for answering!