I\'m trying to work on the new TabLayout from the android design library.
TabLayout
I want to change tab text to custom font. And,I tried to sear
Change
if (tabViewChild instanceof TextView) {
for
if (tabViewChild instanceof AppCompatTextView) {
to make it work with android.support.design.widget.TabLayout (at least from com.android.support:design:23.2.0)