Android TabSpec文本填充

时间:2012-11-22 15:21:51

标签: android tabs padding

我需要在tabWidget元素上添加一些填充。 我试图在图像下面的文字上添加填充。

我正在尝试这个:

    for (int i = 0; i < tabHost.getChildCount(); i++) {
        tabHost.getChildAt(i).setPadding(2, 2, 2, 2);

    }

但似乎没有任何反应。

这是xml:

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/LinearLayout01"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </TabWidget>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </FrameLayout>
</LinearLayout>

</TabHost>

1 个答案:

答案 0 :(得分:0)

回答类似问题,找到here

final TextView tv = (TextView) tabWidget.getChildAt(i).findViewById(android.R.id.title);        
tv.setPadding(2, 2, 2, 2);