我想在 android 的 mytweets 应用程序上提供所有 twitter @mentions 的链接。如果我点击@mentions,我想打开另一个关于@mentions 的页面。
此代码不起作用。首先,我想在推文中搜索@mentions,并提供此@mentions 的链接,如果我在推文中单击此@mentions,我想打开有关此@mentions 的另一个页面。
TextView bt = (TextView) v.findViewById(R.id.bottomtext);
Pattern atMentionPattern = Pattern.compile("@([A-Za-z0-9_]+)");
String atMentionScheme = "http://twitter.com/";
TransformFilter transformFilter = new TransformFilter() {
public String transformUrl(final Matcher match, String url) {
return match.group(1);
}
};
Linkify.addLinks(bt, Linkify.ALL);
Linkify.addLinks(bt, atMentionPattern, atMentionScheme, null, transformFilter);