Android의 TextView에서 문자 폭 조정

1790 단어 안드로이드XML

소개



행간의 기사는 다수 있으나, 문자폭으로 조사하면 전혀 없고 고전했기 때문에 기사로 해 둡니다.

방법



매우 간단. letterSpacing 속성을 붙일 뿐. API 레벨은 21 이상입니다.

activity_main.xml

...

   <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:textSize="20dp"
        android:letterSpacing="1.1"
        />

...




문자 폭이 퍼졌습니다!


단위는 em이고 기본값은 0.0입니다. 반대로 문자 폭을 좁히는 경우는 마이너스를 설정해 줍니다.



letterSpacing="-0.2" 를 설정한 상태

결론



매우 간단하지만 의외로 정보가 없다. . 수요가 없을까?

좋은 웹페이지 즐겨찾기