TextDirectionHeuristicsCompat
class TextDirectionHeuristicsCompat
Some objects that implement TextDirectionHeuristic.
Summary
Constants |
|
|---|---|
const TextDirectionHeuristicCompat! |
If the text contains any strong right to left non-format character, determines that the direction is right to left, falling back to left to right if it finds none. |
const TextDirectionHeuristicCompat! |
Determines the direction based on the first strong directional character, including bidi format chars, falling back to left to right if it finds none. |
const TextDirectionHeuristicCompat! |
Determines the direction based on the first strong directional character, including bidi format chars, falling back to right to left if it finds none. |
const TextDirectionHeuristicCompat! |
Force the paragraph direction to the Locale direction. |
const TextDirectionHeuristicCompat! |
Always decides that the direction is left to right. |
const TextDirectionHeuristicCompat! |
Always decides that the direction is right to left. |
Constants
ANYRTL_LTR
const val ANYRTL_LTR: TextDirectionHeuristicCompat!
If the text contains any strong right to left non-format character, determines that the direction is right to left, falling back to left to right if it finds none.
FIRSTSTRONG_LTR
const val FIRSTSTRONG_LTR: TextDirectionHeuristicCompat!
Determines the direction based on the first strong directional character, including bidi format chars, falling back to left to right if it finds none. This is the default behavior of the Unicode Bidirectional Algorithm.
FIRSTSTRONG_RTL
const val FIRSTSTRONG_RTL: TextDirectionHeuristicCompat!
Determines the direction based on the first strong directional character, including bidi format chars, falling back to right to left if it finds none. This is similar to the default behavior of the Unicode Bidirectional Algorithm, just with different fallback behavior.
LOCALE
const val LOCALE: TextDirectionHeuristicCompat!
Force the paragraph direction to the Locale direction. Falls back to left to right.
LTR
const val LTR: TextDirectionHeuristicCompat!
Always decides that the direction is left to right.
RTL
const val RTL: TextDirectionHeuristicCompat!
Always decides that the direction is right to left.