3

我有此代码适用于调用 EditText 的方法,我尝试对 TextView 使用相同的代码,但它不起作用。文本不会像在 EditText 中那样变成超链接,有人知道为什么吗?

public class MainActivity extends Activity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    TextView tv = (TextView) findViewById(R.id.link_view);
    // make sure that setText call comes BEFORE Linkify.addLinks call
    tv.setText(tv.getText().toString());
    Linkify.addLinks(tv, Linkify.WEB_URLS);
}}

这是布局:

<?xml version="1.0" encoding="utf-8"?>

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

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TableRow>

        <TextView
            android:id="@+id/link_lbl"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:paddingRight="10dip"
            android:text="Link" />

        <TextView
            android:id="@+id/link_view"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="google.com" />
    </TableRow>
</TableLayout>

这将在 EditText 中正常工作,我只需要帮助在 TextView 中做同样的事情

4

2 回答 2

2

试试下面的代码。这对我来说可以。

TextView tv = ....
tv.setMovementMethod(LinkMovementMethod.getInstance());

String content = tv.getText().toString();
List<String> links = new ArrayList<String>();

Pattern p = Patterns.WEB_URL;
Matcher m = p.matcher(content);
while (m.find()) {
    String urlStr = m.group();
    links.add(urlStr);
}

SpannableString f = new SpannableString(content);

for (int i = 0; i < links.size(); i++) {
    final String url = links.get(i);

    f.setSpan(new InternalURLSpan(new OnClickListener() {
        public void onClick(View v) {
            Context ctx = v.getContext();
            String urlToOpen = url;
            if (!urlToOpen.startsWith("http://") || !urlToOpen.startsWith("https://"))
                urlToOpen = "http://" + urlToOpen;
            openURLInBrowser(urlToOpen, ctx);
        }
    }), content.indexOf(url), content.indexOf(url) + url.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}

tv.setText(f);
于 2013-04-17T14:30:24.337 回答
2

具有可点击的跨度并使用可点击的跨度设置文本。您可以为 clickabke 跨度设置自定义颜色。当您单击 textview 中的文本时,它会显示一个 toast。

String title="hello";
SpannableString ss1=  new SpannableString(title);
    ss1.setSpan(new MyClickableSpan(title), 0, ss1.length(), 0); 
    tv = (TextView) findViewById(R.id.textview);
    tv.setText(ss1);
    tv.setMovementMethod(LinkMovementMethod.getInstance());  

我的可点击跨度

   class MyClickableSpan extends ClickableSpan{     
   String clicked;
   public MyClickableSpan(String string)  
   {
    super();
    clicked =string;
   }
   public void onClick(View tv) 
   {
     // onclick of text in textview do something 
 Toast.makeText(MainActivity.this,clicked ,Toast.LENGTH_SHORT).show();
     //display a toast 
   }
   public void updateDrawState(TextPaint ds)
   {
     ds.setColor(Color.BLUE);//set text color 
     ds.setUnderlineText(true); // set to false to remove underline
   }
  } 

结果快照

在此处输入图像描述

编辑:

在 textview 中单击文本打开带有 URL 的浏览器。您还可以将 url 传递给活动。检索 url 并在 webview 中加载 url。

 <uses-permission android:name="android.permission.INTERNET"/>

public void onClick(View tv) {
//do something

   Toast.makeText(MainActivity.this,clicked ,
        Toast.LENGTH_SHORT).show();
   String url = "http://www.example.com";
   Intent i = new Intent(Intent.ACTION_VIEW);
   i.setData(Uri.parse(url));
   startActivity(i);
}


                OR

在 onClick()

   Intent t= new Intent(MainActivity.this,SecondActivity.class);
   t.putExtra("key","http://www.google.com");
   startActivity(t);

第二个.xml

   <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical" >

  <WebView
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:id="@+id/wv"></WebView>
  </LinearLayout>

然后在 SecondActivity

公共类 SecondActivity 扩展 Activity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.second);
    WebView wv= (WebView) findViewById(R.id.wv);
    Bundle extras= getIntent().getExtras();
    if(extras!=null)
    {
        wv.loadUrl(extras.getString("key"));
    }   
} 
 }
于 2013-04-17T14:34:29.603 回答