SoFunction
Updated on 2025-04-03

Android automatically determines whether it is a phone, URL, EMAIL method and the use of Linkify

When we are in aEditTextEnter your phone number or URL orEmailWhen Android automatically judges that when we are entering the phone, we click to enter the content to call the calling program, and when we enter the URL, we click to open the browser program.LinkifyThis problem has been solved very well

step:

1. Layout the UI

Copy the codeThe code is as follows:

<LinearLayout xmlns:andro
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<EditText
android:
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<TextView
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

</LinearLayout>


2. Implement in MainActivity
Copy the codeThe code is as follows:

public class MainActivity extends Activity {

 private TextView tv;
 private EditText et;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  (savedInstanceState);
  setContentView(.activity_main);

  tv = (TextView) findViewById(.tv1);
  et = (EditText) findViewById();
  et.setOnKeyListener(new OnKeyListener() {
   @Override
   public boolean onKey(View v, int keyCode, KeyEvent event) {
    (());
// Determine whether the input is a URL, EMAIL, or PHONENUMBER, and automatically connect to the system.
    Linkify.addLinks(tv, Linkify.WEB_URLS | Linkify.EMAIL_ADDRESSES | Linkify.PHONE_NUMBERS |);
    return false;
   }
  });
 }
}


OK! Easy method: declare it as follows in TextView!

<TextView
 android:
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"

 android:autoLink="web|phone|email"
/>