Android make phone numbers clickable, autodetect Android make phone numbers clickable, autodetect android android

Android make phone numbers clickable, autodetect


Use

android:autoLink="phone"

in textView in the xml layout file


Android has a utility expressly for this purpose: Linkify

TextView noteView = (TextView) findViewById(R.id.noteview);noteView.setText(someContent);Linkify.addLinks(noteView, Linkify.ALL);

See also: https://android-developers.googleblog.com/2008/03/linkify-your-text.html


import android.text.util.Linkify;Linkify.addLinks(text, Linkify.PHONE_NUMBERS);