am 5362f273: Merge "Fix line height problem with inline images in StaticLayout." into mnc-dr-dev
* commit '5362f273e91885041b7cb246667cff3ceca74703': Fix line height problem with inline images in StaticLayout.
This commit is contained in:
@@ -627,7 +627,9 @@ public class StaticLayout extends Layout {
|
|||||||
|
|
||||||
chooseHt = getParagraphSpans(spanned, paraStart, paraEnd, LineHeightSpan.class);
|
chooseHt = getParagraphSpans(spanned, paraStart, paraEnd, LineHeightSpan.class);
|
||||||
|
|
||||||
if (chooseHt.length != 0) {
|
if (chooseHt.length == 0) {
|
||||||
|
chooseHt = null; // So that out() would not assume it has any contents
|
||||||
|
} else {
|
||||||
if (chooseHtv == null ||
|
if (chooseHtv == null ||
|
||||||
chooseHtv.length < chooseHt.length) {
|
chooseHtv.length < chooseHt.length) {
|
||||||
chooseHtv = ArrayUtils.newUnpaddedIntArray(chooseHt.length);
|
chooseHtv = ArrayUtils.newUnpaddedIntArray(chooseHt.length);
|
||||||
|
|||||||
Reference in New Issue
Block a user