Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In android, tab layout getting improper view in landscape mode

This is what my app getting 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 am switching the app into landscape mode, the tab will not fit into the window. Please help, thanks in advance.

like image 290
MaAc Avatar asked Mar 23 '16 13:03

MaAc


1 Answers

Try this:

<android.support.design.widget.TabLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     app:tabMaxWidth="0dp"
     app:tabGravity="fill"
     app:tabMode="fixed" />
like image 63
Abhishek Patel Avatar answered Nov 15 '22 18:11

Abhishek Patel