Android标签页指示器位于viewpager底部,顶部有线路指示器

时间:2014-07-06 12:14:02

标签: android android-tabs viewpagerindicator

我正在使用TabePageIndicator,默认情况下,标签是顶部对齐的。但在我的应用程序中,我需要将它们放在视图寻呼机的底部。我尝试使用以下代码,标签底部对齐,但线仍然显示在底部。请向我提供任何可能的解决方案。谢谢!

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

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:padding="14dp" />

    <com.viewpagerindicator.TabPageIndicator
        android:id="@+id/indicator"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        app:linePosition="top" />

</LinearLayout>

预期结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用负边距来实现效果,但请注意,对于LinearLayout,下面的元素将叠加在前一个元素的顶部。