How to Make text view Fade in Android Java Xml
Fading edge can make your textview appear faded in the beginning or end of that TextView in android.
You can use this xml code to enable fading edge for text view, it can give your app a more professional appearance
Xml code to give fading effect for text view
android:requiresFadingEdge="horizontal" android:fadingEdgeLength="30dp"
Fading Edge Example
<TextView android:id="@+id/title" android:textSize="20sp" android:requiresFadingEdge="horizontal" android:fadingEdgeLength="30dp" android:paddingStart="5dp" android:singleLine="true" android:paddingRight="2dp" android:paddingEnd="2dp" android:paddingLeft="5dp" android:paddingBottom="2dp" android:layout_width="match_parent" android:layout_height="wrap_content" />