App Programming/Kotlin
[Kotlin] TextView
goatlab
2023. 1. 12. 09:07
728x90
반응형
SMALL
TextView
TextView는 화면에서 Text를 표시할 때 사용하는 뷰 위젯이다.
|
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="helloworld"
android:textColor="#FF0000"
android:textSize="20sp"
android:textStyle="bold"/>
|
<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"/>

|
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/long_text"
android:maxLines="3"
android:ellipsize="end"/>728x90
반응형
LIST