双标签布局

时间:2016-02-15 10:56:37

标签: android android-layout tabbed tabbed-view

我已经尝试了两天来管理双标签布局。是否有可能做到这一点?像这样 ? enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用android.support.design.widget.TabLayout

执行此操作

顶部标签使其固定为

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="fixed" 
        app:tabGravity="fill"/>

和内部标签

  <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="scrollable" 
            app:tabGravity="fill"/>

See Good tutorial for TabLayout