본문 바로가기
App Programming/Kotlin

[Kotlin] TextView

by goatlab 2023. 1. 12.
728x90
반응형
SMALL

TextView

 

TextView는 화면에서 Text를 표시할 때 사용하는 뷰 위젯이다.

 

  • android:text – TextView에 출력되는 문자열 지정
  • android:textColor – 문자열 컬러
  • android:textSize – 문자열 사이즈
  • android:textStyle – 문자열 스타일
<TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="helloworld"
        android:textColor="#FF0000"
        android:textSize="20sp"
        android:textStyle="bold"/>
  • android:autoLink ㅡ TextView에 출력되는 문자열을 분석해 자동 링크 추가
  • web, email, phone 등을 값으로 지정
<TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Naver - 웹페이지 : https://naver.com/, 전화번호 : xx-xxx-xxxx"
        android:autoLink="web|email|phone"/>

  • android:maxLines ㅡ 문자열이 특정 라인까지만 출력되게 설정
  • ellipsize ㅡ 줄임표시, end, start, middle
<TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/long_text"
        android:maxLines="3"
        android:ellipsize="end"/>
728x90
반응형
LIST

'App Programming > Kotlin' 카테고리의 다른 글

[Kotlin] 파이어베이스 (Firebase)  (0) 2023.01.15
[Kotlin] ImageView  (0) 2023.01.12
[Kotlin] UI 프로그래밍 (2)  (0) 2023.01.12
[Kotlin] UI 프로그래밍 (1)  (0) 2023.01.12
[Kotlin] Camera  (0) 2023.01.11