Params
class Params
| kotlin.Any | |
| ↳ | android.text.PrecomputedText.Params | 
The information required for building PrecomputedText. Contains information required for precomputing text measurement metadata, so it can be done in isolation of a android.widget.TextView or StaticLayout, when final layout constraints are not known.
Summary
| Nested classes | |
|---|---|
| A builder for creating  | |
| Public methods | |
|---|---|
| Boolean | Check if the same text layout. | 
| Int | Returns the break strategy for this text. | 
| Int | Returns the hyphenation frequency for this text. | 
| LineBreakConfig | Returns the  | 
| TextDirectionHeuristic | Returns the  | 
| TextPaint | Returns the  | 
| Int | hashCode() | 
| String | toString() | 
Public methods
equals
fun equals(other: Any?): Boolean
Check if the same text layout.
| Parameters | |
|---|---|
| obj | the reference object with which to compare. | 
| o | This value may be null. | 
| Return | |
|---|---|
| Boolean | true if this and the given param result in the same text layout | 
getBreakStrategy
fun getBreakStrategy(): Int
Returns the break strategy for this text.
| Return | |
|---|---|
| Int | A line break strategy Value is android.graphics.text.LineBreaker#BREAK_STRATEGY_SIMPLE,android.graphics.text.LineBreaker#BREAK_STRATEGY_HIGH_QUALITY, orandroid.graphics.text.LineBreaker#BREAK_STRATEGY_BALANCED | 
getHyphenationFrequency
fun getHyphenationFrequency(): Int
Returns the hyphenation frequency for this text.
getLineBreakConfig
fun getLineBreakConfig(): LineBreakConfig
Returns the LineBreakConfig for this text.
| Return | |
|---|---|
| LineBreakConfig | the current line break configuration. The LineBreakConfigwith default values will be returned if no line break configuration is set. This value cannot benull. | 
getTextDirection
fun getTextDirection(): TextDirectionHeuristic
Returns the TextDirectionHeuristic for this text.
| Return | |
|---|---|
| TextDirectionHeuristic | A TextDirectionHeuristicThis value cannot benull. | 
getTextPaint
fun getTextPaint(): TextPaint
Returns the TextPaint for this text.
| Return | |
|---|---|
| TextPaint | A TextPaintThis value cannot benull. | 
toString
fun toString(): String
| Return | |
|---|---|
| String | a string representation of the object. | 
