Android:获取标签栏的高度?

时间:2011-05-19 03:00:29

标签: android tabs height

有什么方法可以让我在Android中获得标签栏的高度?它的getHeight()方法似乎只返回0。

谢谢!

1 个答案:

答案 0 :(得分:0)

在您的代码中尝试此操作。

   for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++) {

            RelativeLayout relativeLayout =(RelativeLayout)tabHost.getTabWidget().getChildAt(i);
            relativeLayout.getChildCount();

            TextView tabhostText = (TextView) relativeLayout.getChildAt(1);

            tabhostText.setTextSize(20.0f); // you can set the TextSize of your tab also
            tabHost.getTabWidget().getChildAt(i).getLayoutParams().height = 30;

        }

它会起作用。