我正在使用Linkify与自定义TransformFilter。是否有可能告诉linkify只匹配我的模式的第一次出现?
答案 0 :(得分:2)
我会使用MatchFilter,就像这样
MatchFilter matcher = new MatchFilter() {
boolean firstTime;
@Override
public boolean acceptMatch(CharSequence s, int start, int end) {
if(firstTime) {
return true;
firstTime = false;
} else {
return false;
}
}
};
希望有所帮助