我正在使用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>
预期结果:
答案 0 :(得分:0)
您可以使用负边距来实现效果,但请注意,对于LinearLayout,下面的元素将叠加在前一个元素的顶部。