can anybody tell how to reduce the height of tab bar and display tab bar in bottom
Thanks
Note that you have to change the height of each tab. For two tabs:
@Override
public void onCreate(Bundle savedInstanceState) {
... // other code
final int height = 45;
mTabHost.getTabWidget().getChildAt(0).getLayoutParams().height = height;
mTabHost.getTabWidget().getChildAt(1).getLayoutParams().height = height;
}