在android中,标签布局在横向模式下获取不正确的视图

时间:2016-03-23 13:46:02

标签: android user-interface tabs

This is what my app getting in landscape mode

and this is what I want in landscape mode

我使用android.support.design.widget.TabLayout创建了一个应用程序,当我将应用程序切换到横向模式时,该选项卡将不适合窗口。请提前帮助,谢谢。

1 个答案:

答案 0 :(得分:22)

试试这个:

<android.support.design.widget.TabLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     app:tabMaxWidth="0dp"
     app:tabGravity="fill"
     app:tabMode="fixed" />