Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.15 KB

README.md

File metadata and controls

64 lines (41 loc) · 1.15 KB

TextViewUtil Android

Getting Started

Android TextView Util Using for extra TextView Function such as Underline, Strike and other in Kotlin Language

Demo

Installing

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'
	}

Sample Using

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        tvUnderline.underline()

        tvStrike.strike()
    }
}

Min SDK Version

Support Min Sdk version >= 14

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details