LinkTextView

Made TextView with clickable link easier

APACHE-2.0 License

Stars
83

LinkTextView

Made TextView with ClickableSpan more easy

Gradle

implementation "com.reoobter:linktextview:0.0.4"

Feature

Thanks for VeerHans 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.

Usage

noraml

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

advance

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

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

  • 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.
Badges
Extracted from project README