1
現在,我已經使它與固定的高度。這是我的代碼。給動態高度Tabbar底部?
我想根據屏幕分辨率給這個高度動態的。
for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++)
{
tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = 130;
if (i == 0)
{
tabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#ffffff"));
}
else
{
tabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.WHITE);
}
}