본문 바로가기

Android[Kotlin]

[Android][kotlin] TextView 속성 활용하여 링크로 사이트 연결, 전화연결

android:autoLink="web"

=> 자동으로 web page로 연결해 준다.

android:autoLink="web"

 

android:autoLink="phone" 

=> 자동으로 다이얼로 연결해준다.

  <androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/tv_phone"
    style="@style/SHOP_ADDRESS"
    android:layout_width="wrap_content"
    android:layout_height="20dp"
    android:layout_marginStart="10dp"
    android:layout_marginTop="10dp"
    android:autoLink="phone"
    android:hint="전화번호"
    app:layout_constraintStart_toEndOf="@+id/iv_phone"
    app:layout_constraintTop_toBottomOf="@+id/tv_shopContact" />