Changes between Version 4 and Version 5 of TEXT_LAYOUT_COMMONS


Ignore:
Timestamp:
03/09/10 10:18:30 (15 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_LAYOUT_COMMONS

    v4 v5  
    6363  * public int getLineHeight() - locates the largest font size in this text hot text and calculates the line height from it; 
    6464 
    65  * Go to HotAreaLayout. In its ''create'' method, replace the segment {{{ 
     65 * Go to HotAreaLayout. In its ''create'' method, replace the segment  
     66{{{ 
    6667                        LineBreakMeasurer measurer = TextUtils.createLineBreakMeasurer(textLine); 
    6768                        int measurerPos = measurer.getPosition(); 
     
    7576                        float lineHeight = textLayout.getLeading() + textLayout.getAscent() 
    7677                        + textLayout.getDescent(); 
    77 }}} with {{{ 
     78}}}  
     79with  
     80{{{ 
    7881                        TextRunIterator runIterator = new TextRunIterator(textLine); 
    7982                        float lineHeight = runIterator.getLineHeight();