程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-使用Linkify給textview添加鏈接

android-使用Linkify給textview添加鏈接

編輯:編程綜合問答
使用Linkify給textview添加鏈接

我想運用以下代碼給textview添加一個鏈接:

TextView textview = (TextView) findViewById(R.id.mytext);
Pattern myPattern = Pattern.compile("WordToBeLinked");
String link = "http://mydomain.com/something";
Linkify.addLinks(textview, myPattern, link);

預期實現的正常的運行結果應該是:WordToBeLinked可以鏈接,根據這個鏈接可以打開浏覽器。但不知為什麼使用Linkify給WordToBeLinked添加鏈接到URL後, URL會被這樣調用:

http://mydomain.com/somethingWordToBeLinked

是哪裡出錯了呢?

最佳回答:


你應該使用TransformFilter。希望對你有幫助:

TextView textview = (TextView) findViewById(R.id.mytext);
            textview .setText("WordToBeLinked");

            TransformFilter mentionFilter = new TransformFilter() {
                public final String transformUrl(final Matcher match, String url) {
                    return new String("http://mydomain.com/something");
                }
            };

            Pattern pattern = Pattern.compile(".");
            String scheme = "";
            Linkify.addLinks(textview, pattern, scheme, null, mentionFilter);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved