An open API service indexing awesome lists of open source software.

https://github.com/rebooters/linktextview

Made TextView with clickable link easier
https://github.com/rebooters/linktextview

androdi-ui android clickablespan-in-clickable-textview custom-view link textview

Last synced: about 1 month ago
JSON representation

Made TextView with clickable link easier

Awesome Lists containing this project

README

        

# LinkTextView
Made TextView with **ClickableSpan** more easy

[ ![Download](https://api.bintray.com/packages/rookieboy/maven/linktextview/images/download.svg?version=0.0.4) ](https://bintray.com/rookieboy/maven/linktextview/0.0.4/link)

## Gradle

```groovy
implementation "com.reoobter:linktextview:0.0.4"
```
## Feature
Thanks for [VeerHan](https://github.com/VeerHan)‘s [PR](https://github.com/REBOOTERS/LinkTextView/pull/1) .Now we support match repeat word in some complex scenes. for example

```java
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.

## Usage

#### noraml

all clickable word with same color

```kotlin
// 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()
}
}

```

#### advance

clickable word with different color

```kotlin

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()

```

## API

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|

## TODO

- [x] different color for links

## License

---------------------

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.