'안드로이드버튼텍스트'에 해당되는 글 1건

  1. 2023.03.13 안드로이드 Button 텍스트 대문자로 강제 변환될 경우
Android2023. 3. 13. 21:53

안드로이드 Button 객체에 텍스트를 줬는데, 자동으로 upperCase가 적용이 되는 경우가 있다.

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="deerbutton" <!-- 그러나 대문자로 나옴 -->
/>

 

 

 

 

그럴땐,

android:textAllCaps="false"

를 추가해준다.

 

 

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="deerbutton" <!-- 이제 소문자로 잘 나옴 -->
    android:textAllCaps="false"
/>
Posted by 사슴영혼'-'