This is a Simple Android Custom EditText which fade at the end when the text goes beyond the screen.
Inspired from this blog!
Add it to your build.gradle with:
repositories {
maven { url "https://jitpack.io" }
}
and:
dependencies {
compile 'com.github.maheswaranapk:Android-Fade-EditText-View:1.0'
}
In Layout xml,
<com.fadeedittext.FadeEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="The quick brown fox jumps over the lazy dog."/>