Linkify 创建超链接

很好用呀 mark

它会自动的在TextView类或是TextView的衍生类中通过正则模式匹配来创建超链接。

两种方法实现

1. layout中

它支持一个值或多个值:none 、web、 email 、phone、 all

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >


    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:autoLink="email|web"/>

</LinearLayout>

2.代码中

位掩码:WEB_URLS 、EMAIL_ADDRESSES、PHONE_NUMBERS、ALL

package com.gxq.testgridlayout;

import android.app.Activity;
import android.os.Bundle;
import android.text.util.Linkify;
import android.widget.TextView;

public class MainActivity extends Activity {

	private TextView mTextView;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		mTextView = (TextView) this.findViewById(R.id.tv);
		mTextView.setText("http://www.baidu.com");
		Linkify.addLinks(mTextView, Linkify.WEB_URLS | Linkify.EMAIL_ADDRESSES);

	}
}


你可能感兴趣的:(Linkify 创建超链接)