Android TextView Util Using for extra TextView Function such as Underline, Strike and other in Kotlin Language
We can install this library by using gradle
Step 1
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Step 2
dependencies {
compile 'com.github.TuonBondol:TextViewUtil:1.0.8'
}
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
tvUnderline.underline()
tvStrike.strike()
}
}
Support Min Sdk version >= 14
- Bondol Tuon - Bondol Tuon
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details