How to fit the tab width screen in android -
i implement tab layout using android support library , looks like
here tab width not fit screen , layout
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.design.widget.tablayout android:id="@+id/sliding_tabs" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabmode="scrollable" /> <android.support.v4.view.viewpager android:id="@+id/viewpager" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1" android:background="@android:color/white" /> </linearlayout>
try calling methods on tablayout
:
tablayout.settabmode(tablayout.mode_fixed); tablayout.settabgravity(tablayout.gravity_fill);
Comments
Post a Comment