Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BilalSiddiqui/adc9777f1037af36c0294c339ee1e482 to your computer and use it in GitHub Desktop.
Save BilalSiddiqui/adc9777f1037af36c0294c339ee1e482 to your computer and use it in GitHub Desktop.
Set width of tab item in Tab layout
ViewGroup slidingTabStrip = (ViewGroup) mTabSocial.getChildAt(0);
View tab1 = slidingTabStrip.getChildAt(1);
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) tab1.getLayoutParams();
layoutParams.weight = 1.2f;
layoutParams.width = 0;
tab1.setLayoutParams(layoutParams);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment