728x90
반응형
SMALL
안드로이드 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"
/>
728x90
반응형
LIST
'Android' 카테고리의 다른 글
안드로이드 폰인지 패드인지 구분(JAVA 코드) (0) | 2023.04.09 |
---|---|
Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK 오류 (0) | 2023.03.15 |
안드로이드 공유하기 기능(ACTION_SEND) (0) | 2023.03.13 |
[안드로이드] Your project file contains non-ASCII characters. (0) | 2023.03.12 |
안드로이드 design editor is unavailable until a successful project sync 오류 (0) | 2023.03.12 |