仿微博文本中web url替换成图文效果,可自定义文字效果。
First of all, a screenshot:
Please follow the latest publishing aar on jcenter.
follow by the gradle code
dependencies{
compile 'com.lsh:ReplaceWebUrl:1.0.1'
}
LinkUtil linkUtil = new LinkUtil(this);
linkUtil.setReplaceStr("这是个网络链接");
linkUtil.setTextPaint(Color.BLUE, false);
linkUtil.applyUrl(textView, des);
linkUtil.setOnClickUrl(new LinkUtil.OnClickUrl() {
@Override
public void onClick(View widget, String url) {
Toast.makeText(MainActivity.this, "url:" + url, Toast.LENGTH_SHORT).show();
}
});
- v1.0.0
添加更改文字方法
- v1.0.1
添加设置链接样式方法
修改设置替换文字样式方法