1. API
api |
解释 |
boolean isContainChinese(String str) |
是否含有中文字符 (不检测标点符号) |
|
2. Text 富文本
TextView tv = findViewById(R.id.tv);
tv.setText(
new StringManager.Text("文本颜色缩放背景色上标下划线图片点击事件链接跳转下标删除线")
.color("文本颜色", 0xffff0000)
.background("背景色", 0xffffff00)
.scale("缩放", 0.7f)
.supper("上标")
.scale("上标", 0.7f)
.sub("下标")
.scale("下标", 0.7f)
.underLine("下划线")
.image("图", R.mipmap.icon)
.background("线图片", 0xffffff00)
.click("点击事件", text -> {
ToastManager.show(this, text);
})
.url("链接跳转", "http://blog.luzhuo.me")
.deleteLine("删除线")
.size("片", 10)
.build()
);
StringManager.Text.setTextClickable(tv);