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 に答える