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>