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