[안드로이드] TextView URL, 전화번호, Email등 링크 걸기!!
프로그래밍/안드로이드2018. 2. 26. 20:52
TextView에서 전화번호, 인터넷 주소, E-mail등이 있을시 자동으로 링크를 걸어주는 기능입니다
코드에서는 Linkify를 사용하면 되고 xml은 autolink를 사용하면 되는데요
- 코드에서 적용 방법 -
1 2 3 4 5 6 7 8 | TextView txvTest = (TextView)findViewById(R.id.txv_test); Linkify.addLinks(txvTest, Linkify.PHONE_NUMBERS); // 전화번호 링크 걸기 //모든 연결 - Linkify.ALL //e-mail - Linkify.EMAIL_ADDRESSES //주소 - Linkify.MAP_ADDRESSES //인터넷 URL - Linkify.WEB_URLS //전화번호 - Linkify.PHONE_NUMBERS | cs |
- XML에서 적용 방법 -
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:autoLink="phone" android:text="010-1234-5678"/> <!-- 모든 연결 - android:autoLink="all" e-mail - android:autoLink="email" 주소 - android:autoLink="map" 인터넷 URL - android:autoLink="web" 전화번호 - android:autoLink="phone" NONE - android:autoLink="none" --> | cs |
'프로그래밍 > 안드로이드' 카테고리의 다른 글
안드로이드 편리한 돋보기 앱 추천!!! (0) | 2018.05.09 |
---|---|
[안드로이드 추천앱] 편리한 TTS(Text to Speech) 앱!! (0) | 2018.04.14 |
[안드로이드] SQLite 데이터 백업, 복원 방법!!! (0) | 2018.02.16 |
안드로이드 - TO DO(할일 목록) 추천 앱!! (0) | 2017.11.20 |
[안드로이드] 비트맵 이미지 사이즈 간단히 줄이기(늘리기)!! (0) | 2017.11.18 |