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
    '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 |