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" />
'Android[Kotlin]' 카테고리의 다른 글
[Android][kotlin] 안드로이드 기기 고유 값 (1) | 2022.07.06 |
---|---|
[Android][kotlin] intent 활용하여 링크로 사이트 연결, 전화연결 (0) | 2022.07.05 |
[Android][kotlin] 특정문자열 제거, 텍스트뷰 클릭 시 전화다이얼로그 연결 (0) | 2022.07.05 |
[Android][kotlin] textView 밑줄 긋기 (0) | 2022.07.05 |
[Android] Fragment간 데이터 전달 방법들 (0) | 2022.04.27 |