In android, a tab layout getting the wrong view in landscape mode

This is what my application gets in landscape mode

, and this is what I want in landscape mode

I made an application with android.support.design.widget.TabLayout, and when I switch the application to landscape mode, the tab will not fit into the window. Please help, thanks in advance.

+6
source share
1 answer

Try the following:

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

All Articles