Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
ActionBarActivity(AppCompatActivity)에서 Button 텍스트가 대문자로 보여지는 현상에 대한 처리 본문
IT/Android
ActionBarActivity(AppCompatActivity)에서 Button 텍스트가 대문자로 보여지는 현상에 대한 처리
storya 2018. 9. 30. 14:14ActionBarActivity(ActionBarActivity가 deprecated되어 AppCompatActivity로 대체)에서 Button 텍스트가 대문자로 보여지는 현상이 나타나는데 이런 경우 Button의 XML 코드에 android:textAllCaps="false" 명시해주면 텍스트가 모두 대문자로 보여지지 않는다.
<Button
android:id="@+id/add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add"
android:layout_weight="0"
android:textAllCaps="false" />
반응형
'IT > Android' 카테고리의 다른 글
[Android Studio]안드로이드 스튜디오에서 이벤트 처리하기 (0) | 2018.10.02 |
---|---|
[Android Studio]안드로이드 스튜디오에서 국제화하기 (0) | 2018.10.01 |
com.android.support:appcompat-v7:27.1.1 과 com.google.android.gms:play-services-maps:15.0.1 충돌 (0) | 2018.09.17 |
안드로이드 스튜디오 오류 Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled. (0) | 2018.01.25 |
[Phonegap] 안드로이드 스튜디오에서 폰갭 설치 및 사용하기 (0) | 2016.03.24 |
Comments