media/library
aptly-io d753378b2f Allow multiple identical but intermittent spans
Multiple identical TTML fontStyles or fontWeights or textDecorations
on the content for a specific moment were rendered as if there's only
one decoration (span).
That's because SpannableStringBuilder.setSpan(span, start, end, flag)
found an earlier set span (the static allocated span's reference
is the same each time) and only refreshed this first span's start and
end values instead of adding a new span at its (new) different range.
This patch removes the static data members;
this makes the newly allocated span objects distinguishable.
A correct implementation is favoured over worries about memory
consumption.
2015-12-12 21:09:43 +01:00
..
src Allow multiple identical but intermittent spans 2015-12-12 21:09:43 +01:00
build.gradle Bump version to 1.5.3. 2015-12-08 18:00:46 +00:00