0

我需要在 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>
4

1 回答 1

0

来自类似问题的答案,在此处找到。

final TextView tv = (TextView) tabWidget.getChildAt(i).findViewById(android.R.id.title);        
tv.setPadding(2, 2, 2, 2);
于 2012-11-22T15:44:05.137 回答