Search code examples
androidandroid-support-libraryandroid-tablayout

tablayout change tab selected textsize


enter image description here

Tablayout.tab cant change selected textsize in code

.

enter image description here

textAppearance can't set selectTextsize too.so how complete it?


Solution

  • Give the following a try. Note to implement the tab selected listener as well.

    TextView title = (TextView)(((LinearLayout ((LinearLayout) mTabLayout.getChildAt(0)).getChildAt(tabPosition)).getChildAt(1));
    title.setTextSize(...);