...

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