Merge "Fix bug 14276128 Clipping at bottom of TextView" into klp-modular-dev

This commit is contained in:
Raph Levien
2014-04-24 16:12:54 +00:00
committed by Android (Google) Code Review

View File

@@ -654,7 +654,7 @@ public class StaticLayout extends Layout {
int extra;
if (needMultiply) {
if (needMultiply && end != bufEnd) {
double ex = (below - above) * (spacingmult - 1) + spacingadd;
if (ex >= 0) {
extra = (int)(ex + EXTRA_ROUNDING);