如何从android中的tabwidgets中删除底部空间

时间:2014-09-18 12:50:54

标签: android android-tabhost fragment-tab-host

我试图从标签底部删除空格。 screen shot of space

Here is my xml code.

我想删除标签中绿色以下的空格。

在这里输入代码

                   <LinearLayout
            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"
                android:layout_alignParentBottom="true"
                android:layout_gravity="bottom"
                android:divider="@null"
                android:gravity="bottom"
                android:showDividers="none"
                android:tabStripEnabled="false" />
        </LinearLayout>

我搜索了这么多,但没有得到适当的解决方案。

我想删除标签中绿色以下的空格。

建议表示赞赏。

2 个答案:

答案 0 :(得分:0)

尝试android:tabStripEnabled="false"

答案 1 :(得分:0)

摘自SO Post

尝试这些修改。此代码取自具有选项卡的片段。

以下是创建标签指示符视图的代码。

    View indicator = LayoutInflater.from(getActivity()).inflate(R.layout.tab,(ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
    TabSpec tabSpec = mTabHost.newTabSpec(tag);
    tabSpec.setIndicator(indicator);
    tabSpec.setContent(tabContentId);

您的标签指示器视图可能与此类似。

<?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:layout_gravity="center"
    android:layout_weight="1"
    android:background="@drawable/tabselector"
    android:padding="5dp" >

    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/tab1icon"/>

</LinearLayout>

现在,重要的部分是LinearLayout中的android:background="@drawable/tabselector"。我看起来像这样。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Non focused states -->
    <item
        android:state_focused="false"
        android:state_selected="false"
        android:state_pressed="false"
        android:drawable="@drawable/tab_unselected_light" />
    <item
        android:state_focused="false"
        android:state_selected="true"
        android:state_pressed="false"
        android:drawable="@drawable/tab_selected_light" />
    <!-- Focused states -->
    <item
        android:state_focused="true"
        android:state_selected="true"
        android:state_pressed="false"
        android:drawable="@drawable/tab_focused_light" />
    <!-- Pressed state -->
    <item
        android:state_pressed="true"
        android:drawable="@drawable/tab_pressed_light" />
</selector>

此tabselector.xml是您与@drawable/tab_pressed_light@drawable/tab_button_active @drawable/tab_unselected_light

交换@drawable/tab_button_inactive的地方

您可以使用以下语句删除标签的底部条带和标签之间的分隔线。

    TabHost t;
    t.getTabWidget().setStripEnabled(false);
    t.getTabWidget().setDividerDrawable(R.drawable.ic_launcher);