The height of my tablayout is wrap content. But it's not working. I am pasting the screenshot here. It's working OK in mobile phones but not in tab.
This problem was also with width but the tag app:tabMaxWidth="0dp" helped me out. How can i overcome this? here is the code to layout.
<android.support.design.widget.TabLayout
android:id="@+id/tablayout_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMaxWidth="0dp"
android:minHeight="0dp"
android:layout_gravity="bottom"
android:layout_below="@+id/relativeLayout"
app:tabGravity="fill"
app:tabBackground="@drawable/tab_color_selector"
app:tabIndicatorColor="@color/sea_green"
app:tabIndicatorHeight="2dp"
app:tabMode="fixed"
android:clickable="false"
/>