Changes between Version 4 and Version 5 of TEXT_LAYOUT_COMMONS
- Timestamp:
- 03/09/10 10:18:30 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_LAYOUT_COMMONS
v4 v5 63 63 * public int getLineHeight() - locates the largest font size in this text hot text and calculates the line height from it; 64 64 65 * Go to HotAreaLayout. In its ''create'' method, replace the segment {{{ 65 * Go to HotAreaLayout. In its ''create'' method, replace the segment 66 {{{ 66 67 LineBreakMeasurer measurer = TextUtils.createLineBreakMeasurer(textLine); 67 68 int measurerPos = measurer.getPosition(); … … 75 76 float lineHeight = textLayout.getLeading() + textLayout.getAscent() 76 77 + textLayout.getDescent(); 77 }}} with {{{ 78 }}} 79 with 80 {{{ 78 81 TextRunIterator runIterator = new TextRunIterator(textLine); 79 82 float lineHeight = runIterator.getLineHeight();