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
<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
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"
/>