如果是Button自動大寫問題,直接設置Button的 textAllCaps="false" 即可;
如果是TabLayout出現全大寫問題,先在style.xml加入屬性:
<style name="TabLayoutTextStyle" parent="TextAppearance.Design.Tab"> <item name="android:textSize">12sp</item> <item name="textAllCaps">false</item> </style>
布局中引入該樣式即可
<!-- 注:無效方式 style="@style/TabLayoutTextStyle" --> <android.support.design.widget.TabLayout android:id="@+id/pcTabLayout" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabTextAppearance="@style/TabLayoutTextStyle" />