use of com.airbnb.lottie.model.FontCharacter in project lottie-android by airbnb.
the class LottieCompositionMoshiParser method parseChars.
private static void parseChars(JsonReader reader, LottieComposition composition, SparseArrayCompat<FontCharacter> characters) throws IOException {
reader.beginArray();
while (reader.hasNext()) {
FontCharacter character = FontCharacterParser.parse(reader, composition);
characters.put(character.hashCode(), character);
}
reader.endArray();
}
Aggregations