解决 Button 和 TabLayout 英文自动大写的问题

导言:今天在使用TabLayout + ViewPager2加载页面时发现TabLayout 标题威英文时,全部都是大写展示。为此苦恼许久。
在此记录下该问题解决办法。

1.碰到这种问题我们第一时间应该查看 Android 源码,在源码中会发现 TabLayout 的默认属性中 tabTextAppearance 继承了 Button 的 textAllCaps 属性.

  • TabLayout.java
    tabTextAppearance =
        a.getResourceId(R.styleable.TabLayout_tabTextAppearance, R.style.TextAppearance_Design_Tab);
  • styles.xml
<style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button">
       <item name="android:textSize">@dimen/design_tab_text_size</item>
       <item name="android:textColor">?android:textColorSecondary</item>
       <item name="textAllCaps">true</item>
</style>

我们通过查询TabLayout 源码发现,在style文件中,TabLayout 继承来自 Button 属性 textAllCaps = true,
这个属性是设置英文为使用大写。所以推测出 Button 默认展示形式应该也是大写。

解决方法
  • TabLayout 在xml文件设置 tabTextAppearance 属性
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
  • Button 修改 textAllCaps 属性
android:textAllCaps="false

以上就是解决 TabLayout 和 Button 英文自动大写的解决方法和思路。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐