use platform default text size for tab text

This commit is contained in:
Adrian Ulrich 2016-01-02 11:42:54 +01:00
parent 1d5ce6d239
commit ed67cb0af2

View File

@ -52,6 +52,7 @@ public class VanillaTabLayout extends SlidingTabLayout {
TextView view = super.createDefaultTabView(context);
int color = getResources().getColor(android.R.color.primary_text_dark);
view.setTextColor(color);
view.setTextSize(14);
return view;
}