问问题
1086 次
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 回答