I have an android activity in which I\'m using tabs.
public class UnitActivity extends TabActivity { @Override public void onCreate(Bundle savedInstanceS
You also have to use LayoutInflater after TabHost
LayoutInflater.from(this).inflate(R.layout.unit_data, tabHost.getTabContentView(), true);
I also got stuck with this and finally figure it out.