4

tabhost を使用していて、タブの境界線を無効にしようとしていました。私はこの android:tabStripEnabled="false" を XML で使用しましたが、動作していないようです。行はまだそこにあり、style.xml (stackoverflow から見つけた) を変更するなどの他の方法を試しますが、それも機能しません。何か案が?

私のタブxml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

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

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_above="@android:id/tabs" />

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:background="#FFFFFF"
                android:tabStripEnabled="false"
                android:layout_gravity="bottom" />
        </RelativeLayout>
    </TabHost>

</LinearLayout>
4

2 に答える 2

2

次のステートメントを使用して、タブの下部ストリップとタブ間の仕切りを削除できます。

    TabHost t;
    t.getTabWidget().setStripEnabled(false);
    t.getTabWidget().setDividerDrawable(R.drawable.ic_launcher);
于 2012-08-21T04:19:41.633 に答える
1

少なくとも minSDK 8 (2.2) が必要です... マニフェストを確認してください。

コードにタブの背景を設定する行がないことを確認してください(私はこの問題を抱えていました...);)

于 2012-10-04T12:33:21.187 に答える