Releases: rosenpin/fading-text-view
Releases · rosenpin/fading-text-view
3.3
v3.2
v3.1
What's Changed
- Converted FadingTextView file from Java to Kotlin by @ebayraktar in #22
New Contributors
- @ebayraktar made their first contribution in #22
Full Changelog: 3.0...3.1
v3.0
2.6
Libraries Update
- Updated support library to 26.1.0
- Updated build tools and gradle version
- Minor refactoring
Libraries Update
Updated support libraries to 26.0.0
Updated libraries
Updated support libraries
Docs and more
-
Added documentation
-
Added a new refresh method to forcefully update the view
This method should only be used to forcefully apply timeout changes
It will dismiss the currently queued animation change and start a new animation -
setTimeout(int)
is now deprecated, please usesetTimeout(double, TimeUnit)
instead
New version
You can now set the timeout period in time units other than milliseconds (Minutes, Seconds).
For example:
FTV.setTimeout(0.5, FadingTextView.TimeUnit.MINUTES);
Or:
FTV.setTimeout(30, FadingTextView.TimeUnit.SECONDS);
Also, added an option to set the timeout period to the default value:
FTV.setTimeout(FadingTextView.DEFAULT_TIME_OUT);