我想更改viewpager中滑动选项卡的颜色

时间:2015-01-13 09:51:12

标签: android

我想使用viewpager更改滑动选项卡的背景颜色。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    >

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    >
    </android.support.v4.view.ViewPager>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我认为你想自定义你的viewpager标签栏。 这是用于设置viewpager选项卡的非常有用的库:PagerSlidingTabTrip

它比android默认的viewpager标签栏更好。

示例xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app1="http://schemas.android.com/apk/res/mobi.thevip"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <View
        android:id="@+id/action_bar_line"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#C0C0C0" />

    <com.astuetz.PagerSlidingTabStrip
        android:id="@+id/indicator"
        android:layout_width="match_parent"
        android:layout_below="@+id/action_bar_line"
        android:layout_height="@dimen/abs__action_bar_default_height"
        app1:pstsIndicatorColor="@color/tab_indicator"
        app1:pstsUnderlineColor="@color/tab_underline_indicator" />

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/indicator" >
    </android.support.v4.view.ViewPager>
</RelativeLayout>

您可以阅读库自述文件以使用它。

希望这有帮助!