not supported in 'tabTextAppearance' attribute in TabLayout
See original GitHub issueWant to use with tabTextAppearance
attribute
like this:
in styles:
<style name="TextAppearance.RobotoMedium" parent="android:TextAppearance">
<!-- Custom Attr-->
<item name="fontPath">fonts/Roboto-Medium.ttf</item>
</style>
in layout:
<android.support.design.widget.TabLayout
...
...
app:tabTextAppearance="@style/TextAppearance.RobotoMedium"
/>
don’t want to to this: ##http://stackoverflow.com/a/39252162/1529129
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:5
Top Results From Across the Web
android:textAllCaps="false" not working for TabLayout design ...
We have to use 'app:tabTextAppearance' atrribute instead of 'style' attribute. – thilina Kj. Oct 4, 2017 at 20:03. 1.
Read more >TabLayout | Android Developers
Returns whether tab labels will be displayed inline with tab icons, or if they will be displayed underneath tab icons. boolean ...
Read more >Google Play Style Tabs using TabLayout - CodePath Cliffnotes
TabLayout , which will be used for rendering the different tab options. ... You can override this behavior by changing the tabTextAppearance property....
Read more >All-in-One — Android TabLayout and TabItem | by Myrick Chow
TabLayout is a common widget working with ViewPager and ViewPager2. ... It is not recommended to use this attribute unless you clearly understand...
Read more >ViewPager2 and TabLayout Android - Narayan Panthi - Medium
Tab Indicator. We can customize the tab indicators with attributes like. app:tabIndicator="@drawable/custom_tab_indicator" app:tabIndicatorColor ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I just found why, because Tab is added after calligraphy injected and apply font, and not sure TabLayout not referencing the typeface when adding Tab If your tab is added dynamically like my case, this is the only solution i have, you can refer my code, it is improved and cleaner version from your link, applicable for activity, but dynamic view like recycler view need to apply for the newly added view.
Picture for your reference, u can see the 3rd tab is not apply typeface after i call apply root view
You can do this in activity root view
Hi, issue still present. Any solution?