공식문서
textView.setOnClickListener {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://www.naver.com"))
startActivity(intent)
}
textView 클릭 시 네이버로 연결한다.
URL에 파라미터를 추가해서 넘기려면 URL 뒤에 붙여주도록 합니다.
textView.setOnClickListener {
String page = "/55"
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://https://lolou.tistory.com/$page"))
startActivity(intent)
}
전화연결
val shopPhone = "0507-1362-4318"
val intent = Intent(Intent.ACTION_DIAL)
// tel: 이걸 붙여줘야 인식함.
intent.data = Uri.parse("tel:$shopPhone")
startActivity(intent)
val intent = Intent(Intent.ACTION_DIAL, Uri.parse("tel:${shopPhone}"))
'Android[Kotlin]' 카테고리의 다른 글
[Android][kotlin] 안드로이드 Sentry(센트리) 적용하기 (0) | 2022.07.10 |
---|---|
[Android][kotlin] 안드로이드 기기 고유 값 (1) | 2022.07.06 |
[Android][kotlin] TextView 속성 활용하여 링크로 사이트 연결, 전화연결 (0) | 2022.07.05 |
[Android][kotlin] 특정문자열 제거, 텍스트뷰 클릭 시 전화다이얼로그 연결 (0) | 2022.07.05 |
[Android][kotlin] textView 밑줄 긋기 (0) | 2022.07.05 |