I started with the TabLayout tutorial from here.
I created a ListActivity class (ListAct) to be used as a Tab. The only difference between the Tabs is the used Layout:
in the onCreate I use setContentView(R.layout.layout0) for the first Tab.
In the second I do setContentView(R.layout.layout1).
It seams a bit like a waste to use a different class for this, does it not?
Is there a way to pass the used Layout (int) while creating the Tab like this?
intent = new Intent().setClass(this, ListAct.class);
spec = tabHost.newTabSpec("list0").setIndicator("List0",res.getDrawable(R.drawable.ic_tab_artists));
spec.setContent(intent);
tabHost.addTab(spec);