如何在android中删除标签视图和片段的分隔符?

时间:2016-05-05 10:08:44

标签: android android-layout android-fragments android-studio

我正在研究一个Android项目,我正在使用标签视图,我想删除标签和片段的分隔符。我能做什么? 这是我布局的图片。 enter image description here

   <?xml version="1.0" encoding="utf-8"?>
   <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:background="@android:color/holo_blue_dark"
        android:layout_height="fill_parent">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
    <TabWidget
        android:layout_marginTop="30dp"
        android:layout_marginLeft="20dp"
        android:id="@android:id/tabs"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:showDividers="none"
        style="@style/AppTheme" />
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        />
</LinearLayout>

3 个答案:

答案 0 :(得分:1)

尝试使用tablayout,

<android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/size_30"
            android:layout_marginRight="@dimen/size_30"
            app:tabGravity="fill"
            app:tabMode="fixed"
            app:tabSelectedTextColor="@color/text_color"
            app:tabTextAppearance="@style/CustomTabText"
            app:tabTextColor="@color/text_color" />

答案 1 :(得分:0)

试试这个

<TabWidget ... 
android:tabStripEnabled="false" >

 ... 

</TabWidget>

答案 2 :(得分:0)

它会帮助你

<TabWidget
android:tabStripEnabled="false"/ >

请这样做