Package com.airbnb.lottie
Class LottieComposition.Factory
- java.lang.Object
-
- com.airbnb.lottie.LottieComposition.Factory
-
- Enclosing class:
- LottieComposition
@Deprecated public static class LottieComposition.Factory extends Object
Deprecated.This will be removed in the next version of Lottie.LottieCompositionFactoryhas improved API names, failure handlers, and will return in-progress tasks so you will never parse the same animation twice in parallel.- See Also:
LottieCompositionFactory
-
-
Method Summary
-
-
-
Method Detail
-
fromAssetFileName
@Deprecated public static Cancellable fromAssetFileName(Context context, String fileName, OnCompositionLoadedListener l)
Deprecated.
-
fromRawFile
@Deprecated public static Cancellable fromRawFile(Context context, @RawRes int resId, OnCompositionLoadedListener l)
Deprecated.
-
fromInputStream
@Deprecated public static Cancellable fromInputStream(InputStream stream, OnCompositionLoadedListener l)
Deprecated.
-
fromJsonString
@Deprecated public static Cancellable fromJsonString(String jsonString, OnCompositionLoadedListener l)
Deprecated.
-
fromJsonReader
@Deprecated public static Cancellable fromJsonReader(JsonReader reader, OnCompositionLoadedListener l)
Deprecated.
-
fromFileSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromFileSync(Context context, String fileName)
Deprecated.
-
fromInputStreamSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromInputStreamSync(InputStream stream)
Deprecated.
-
fromInputStreamSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromInputStreamSync(InputStream stream, boolean close)
Deprecated.This will now auto-close the input stream!
-
fromJsonSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromJsonSync(Resources res, JSONObject json)
Deprecated.
-
fromJsonSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromJsonSync(String json)
Deprecated.
-
fromJsonSync
@Nullable @WorkerThread @Deprecated public static LottieComposition fromJsonSync(JsonReader reader)
Deprecated.
-
-