如何在布局中间显示选项卡小部件?

时间:2015-09-07 00:36:36

标签: android tabwidget

我正在尝试在布局中间显示制表符小部件,如下所示。

enter image description here

我在标签小部件之前有很少的文字视图,进度条等。 这有可能在android中实现吗? 如果是,我该怎么做?

1 个答案:

答案 0 :(得分:0)

是的,这是可能的。

假设您有一个垂直LinearLayout作为主要布局。你会有这样的事情:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <!-- put your top widgets/progress bars here
         their height needs to be fixed or wrap_content -->

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

        <android.support.v4.view.PagerTabStrip
            android:id="@+id/pagertabstrip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top" />

    </android.support.v4.view.ViewPager>

</LinearLayout>