1

我已经尝试了两天来管理双标签布局。是否有可能做到这一点?像这样 ? 在此处输入图像描述

4

1 回答 1

1

你可以通过使用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"/>

请参阅 TabLayout 的好教程

于 2016-02-15T11:01:13.913 回答