Start TabActivity from ListActivity (which is content of parent TabActivity) in Android
- by barmaleikin
Hi guys,
I have problems with switching between activities.
I have two TabActivities (A and B), each of of tab activity has 4 tabs with ListActivity. I am trying to show B activity onListItemClick.
Code on click is:
Intent intent = new Intent(getApplicationContext(), TabBActivity.class);
startActivity(intent);
My manifest file is following:
…