Made TextView with ClickableSpan more easy
implementation "com.reoobter:linktextview:0.0.4"
Thanks for VeerHan‘s PR .Now we support match repeat word in some complex scenes. for example
val androidRules = arrayOf("手机", "Linux", "操作系统", "移动设备", "智能手机", "平板电脑", "开放手机联盟")
the word "手机" is repeated in those keyword. when the word "手机" is clicked in ”智能手机“ or ”开发手机联盟“ ,it will be react as "手机” ,while when "智能手机" and ”开发手机联盟“ clicked ,it will react as normal.
all clickable word with same color
// the content should be set for TextView
val android = getString(R.string.text_android_baike)
// Array to define all clickable words
val androidRules = arrayOf("Linux","操作系统","移动设备","智能手机","平板电脑","开放手机联盟")
Linker.Builder()
.content(android)
.textView(text_view_1)
.links(androidRules)
.linkColor(ContextCompat.getColor(this,R.color.link))
.addOnLinkClickListener(onLinkClickListener)
.apply()
private val onLinkClickListener = object:OnLinkClickListener{
override fun onClick(view: View, content: String) {
Toast.makeText(mContext, "clicked link is : $content", Toast.LENGTH_SHORT).show()
}
}
clickable word with different color
val actorsRules1 = listOf(
Pair("刘仁娜", ContextCompat.getColor(this, R.color.red)),
Pair("李栋旭", ContextCompat.getColor(this, R.color.colorPrimary)),
Pair("吴政世", ContextCompat.getColor(this, R.color.colorAccent)),
Pair("沈亨倬", ContextCompat.getColor(this, R.color.colorPrimaryDark)),
Pair("吴义植", ContextCompat.getColor(this, R.color.green)),
Pair("张基龙", ContextCompat.getColor(this, R.color.blue)),
Pair("黄灿盛", ContextCompat.getColor(this, R.color.yellow)),
Pair("金希珍", ContextCompat.getColor(this, R.color.orange))
)
Linker.Builder()
.content(actors)
.textView(text_view_4_1)
.colorLinks(actorsRules1)
.shouldShowUnderLine(false)
.addOnLinkClickListener(onLinkClickListener)
.apply()
method | function | must invocation | defaultValue |
---|---|---|---|
content | content for TextView | yes | none |
textview | TextView used for set clickable words | yes | none |
links | String/Array/List to define clickable words | no | none |
linkColor | Color for clickable word | no | Color.Black |
colorLinks | supply a List of Pair,define both word and color | no | null |
shouldShowUnderLine | whether to show underline for clickable word | no | false |
addOnLinkClickListener | add a listener will callback once click the link word | no | null |
setLinkMovementMethod | add a custom LinkMovementMethod | no | internal |
bold | true means textStyle="bold" | no | false |
apply | apply the function | yes | none |
- different color for links
Copyright 2019 REBOOTERS
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.