I want to format my text for shortcuts as same as shortcut texts in application launcher. Too long text will be cut and its tail will be faded away. Is there anybody know how to do that?
Thanks so much!
I want to format my text for shortcuts as same as shortcut texts in application launcher. Too long text will be cut and its tail will be faded away. Is there anybody know how to do that?
Thanks so much!
Add fadingEdge
to your TextView
definition
android:fadingEdge="horizontal"
However this method is deprecated for performance degradation issues and should be used only when required by the application's visual design.
To request fading edges with API level 14
and above, use the
android:requiresFadingEdge
attribute
See the documentation