Decay the last line in a multi-line TextView

Is there any solution for fading the last line in a multi-line TextView? As the following effects:

TextView with fade effect

+4
source share
1 answer

You can set the Textview property as changmaxlines as per.

android:maxLines="1"
android:scrollHorizontally="true"
android:ellipsize="end"
-1
source

Source: https://habr.com/ru/post/1612373/


All Articles