Android의 TextView에서 문자 폭 조정
소개
행간의 기사는 다수 있으나, 문자폭으로 조사하면 전혀 없고 고전했기 때문에 기사로 해 둡니다.
방법
매우 간단. 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"
를 설정한 상태
결론
매우 간단하지만 의외로 정보가 없다. . 수요가 없을까?
Reference
이 문제에 관하여(Android의 TextView에서 문자 폭 조정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/tarumzu/items/d9559897edf76c7d4c57
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
매우 간단.
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"
를 설정한 상태결론
매우 간단하지만 의외로 정보가 없다. . 수요가 없을까?
Reference
이 문제에 관하여(Android의 TextView에서 문자 폭 조정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/tarumzu/items/d9559897edf76c7d4c57
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Android의 TextView에서 문자 폭 조정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tarumzu/items/d9559897edf76c7d4c57텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)