Fading Text View Versions Save

A TextView that changes its content automatically every few seconds

3.3

3 months ago

What's Changed

Full Changelog: https://github.com/rosenpin/fading-text-view/compare/3.2...3.3

3.2

10 months ago

3.1

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rosenpin/fading-text-view/compare/3.0...3.1

3.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/rosenpin/fading-text-view/compare/v2.6...3.0

v2.6

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/rosenpin/fading-text-view/compare/2.5...v2.6

Note

This is not a new release, it's v2.6 that was released on October 2020.

2.5

6 years ago
  • Updated support library to 26.1.0
  • Updated build tools and gradle version
  • Minor refactoring

2.1

6 years ago

Updated support libraries to 26.0.0

1.8.1

7 years ago

Updated support libraries

1.7

7 years ago
  • 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 use setTimeout(double, TimeUnit) instead

1.6

7 years ago

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);