android 入门进修条记 判定网页地点 邮箱 电话号码 切合要求的加链接~

mTextView01 = (TextView)findViewById(R.id.myTextView1); mEditText01 = (EditText)findViewById(R.id.myEditText1); mEditText01.setOnKeyListener(new EditText.OnKeyListener() { @Override public boolean onKey(View arg0, int arg1, KeyEvent arg2) { // TODO Auto-generated method stub mTextView01.setText(mEditText01.getText()); /*判定输入的范例是何种,并与系统毗连*/ Linkify.addLinks(mTextView01,Linkify.WEB_URLS|Linkify. EMAIL_ADDRESSES|Linkify.PHONE_NUMBERS); return false; } });


 需要引入

import android.text.util.Linkify;
别的监听事件是用EditText的 setOnKeyListener

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/8490.html