【关于TextView】

TextView中加入超级网址链接,如下例子:
<span style="font-family:Comic Sans MS;font-size:18px;"><TextView android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:autoLink="all"
			android:text="访问新浪网:http://www.sina.com.cn"
			android:textSize="18sp"/></span>



EditText即时监听User输入

<span style="font-family:Comic Sans MS;font-size:18px;">mEditText.setOnKeyListener(new View.OnKeyListener() {
			@Override
			public boolean onKey(View v, int keyCode, KeyEvent event) {
				// TODO Auto-generated method stub
				return false;
			}
		});</span>


你可能感兴趣的:(【关于TextView】)