Documentation
    Preparing search index...

    Interface AnimatedImage

    Interface of the common abstraction behind a platform specific animated image object.

    interface AnimatedImage {
        isRunning(): boolean;
        start(): void;
        stop(): void;
    }
    Index

    Methods

    • Returns boolean value representing the if the native Android Animatable's is being animated.

      Returns boolean

    • Starts the native Android Animatable image.

      Returns void

    • Stops the native Android Animatable image.

      Returns void