[TIP] Andrid Button cannot lower case text - 소문자 입력하기

Notepad96

·

2022. 2. 18. 09:29

300x250

Andrid Button cannot lower case text - 버튼 텍스트 대문자로만 표시될 경우

 

 

결 과

 

 

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="24sp"
        android:text="Test"

        android:textAllCaps="false"
        />

 

 

# android:textAllCaps 값으로 false를 주면 대소문자를 구분하여 표시한다.

 

 

 

300x250