본문 바로가기
컴퓨터공학/안드로이드

[안드로이드 스튜디오] 버턴 소문자 표시하기

by 무에서 2017. 8. 20.
반응형

안드로이드 스튜디오 버턴은 디폴트로 모두 대문자 표시가 되어 있다. 아래 코드를 xml 파일에 삽입하면 소문자 표시가 된다.










android:textAllCaps="false"


    <Button

        android:id="@+id/button4"

        android:textAllCaps="false"

        android:layout_width="360dp"

        android:layout_height="100dp"

        android:text="10s"

        android:layout_marginTop="8dp"

        app:layout_constraintTop_toBottomOf="@+id/button3"

        app:layout_constraintRight_toRightOf="parent"

        app:layout_constraintLeft_toLeftOf="parent"

        app:layout_constraintHorizontal_bias="0.0" />



반응형

댓글