如何使com.google.android.material.button.MaterialButton文本小写

Jef*_*Liu 1 android material-components-android

如何使文本小写MaterialButton呢?textAllCaps="false"对我不起作用。我在用com.google.android.material:material:1.0.0-alpha3

<com.google.android.material.button.MaterialButton
    android:id="@+id/material_button"
    style="@style/Widget.MaterialComponents.Button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_label_enabled"/>
Run Code Online (Sandbox Code Playgroud)

Hos*_*ifi 5

您需要同时设置textAllCapsandroid:textAllCaps为false来禁止所有利用设置。

  • 谢谢,它只适用于app:textAllCaps =“ false”,不需要“ android:textAllCaps”,android studio不能自动完成,所以我认为该属性不存在。 (3认同)