是否有选项使指标浮动在所选标签下?我在这里描述了问题:https://github.com/jpardogo/PagerSlidingTabStrip/issues/67因为我使用forked lib,因为它允许我设置自定义视图
答案 0 :(得分:1)
这非常简单,只需将PagerSlidingTabSTrip包装在ViewGroup中,然后添加一些填充,例如。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingRight="10dp"
android:paddingLeft="10dp"
android:background="@color/pst_bg_color">
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/psts"
style="@style/BaseTextViewStyle"
android:layout_width="match_parent"
android:layout_height="38dp"
android:background="@color/pst_bg_color"
android:textColor="@color/white"
android:textSize="18sp"
app:pstsTextAllCaps="false"
app:pstsIndicatorHeight="@dimen/pst_indicator_height"
app:pstsShouldExpand="@bool/main_pst_should_expand"
app:pstsIndicatorColor="@color/pst_indicator_color"
app:pstsDividerColor="@color/pst_divider_color"
app:pstsUnderlineHeight="0dp"/>
</LinearLayout>