android

android ActionBar Menu Button 대문자를 소문자로 바꾸기

-샤리- 2022. 3. 15. 14:44

안드로이드의 액션바 메뉴버튼의 기본값이 대문자인지, "Save"나 "Done"로 텍스트를 지정해도 "SAVE", "DONE" 이렇게 모두 대문자로 나온다. 이건 오류가 아니기 때문에 테마 변경으로 해결할 수 있다.

<style name="Theme.MyTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="actionButtonStyle">@style/AppTheme.Widget.ActionButton</item>
</style>

<style name="AppTheme.Widget.ActionButton" parent="@style/Widget.AppCompat.ActionButton">
    <item name="textAllCaps">false</item>
</style>