-
Notifications
You must be signed in to change notification settings - Fork 6
Home
suwhs edited this page Apr 10, 2015
·
2 revisions
#wATL Library for Android
Set of classes inherited from android.widget.TextView with additional capabilites:
- supports Spanned text (formatted text)
- full text justification (typographic aligment)
- selection/highlight supports< 911F /li>
- multi-column text supports
- image wrapping (like HTML image-wrap with align="right|left" attribute)
- TextViewWS (extends TextView) - base class for handling selection mode and cursor drawing
- TextViewEx (extends TextViewWS) - similar to TextView, but supports full text justification
- TextLayout - complex class, using for split formatted text to lines, handle images, and painting result on Canvas
- ContentView - interface for implement callbacks for TextLayout and contains inner class Options - calculating/rendering configurable parameters
- ContentView.Options - configurable paramters for widgets, that implements ContentView interface
- MultiColumnTextViewEx - see class name. AFAIR, this class has good example of TextLayout complex layout calculating capability.
- HyphenLineBreaker - implementation of LineBreaker with support hypenation using precalculated patterns
none yet