Most visited

Recently visited

TextDirectionHeuristicCompat

public interface TextDirectionHeuristicCompat

android.support.v4.text.TextDirectionHeuristicCompat


使用启发式的对象的接口,通过检查文本来在段落方向上进行猜测。

Summary

Public methods

abstract boolean isRtl(char[] array, int start, int count)

猜猜一个字符数组是否在RTL方向上。

abstract boolean isRtl(CharSequence cs, int start, int count)

猜测 CharSequence是否处于RTL方向。

Public methods

isRtl

boolean isRtl (char[] array, 
                int start, 
                int count)

猜猜一个字符数组是否在RTL方向上。

Parameters
array char: the char array.
start int: start index, inclusive.
count int: the length to check, must not be negative and not greater than array.length - start.
Returns
boolean true if all chars in the range are to be considered in a RTL direction, false otherwise.

isRtl

boolean isRtl (CharSequence cs, 
                int start, 
                int count)

猜测 CharSequence是否处于RTL方向。

Parameters
cs CharSequence: the CharSequence.
start int: start index, inclusive.
count int: the length to check, must not be negative and not greater than CharSequence.length() - start.
Returns
boolean true if all chars in the range are to be considered in a RTL direction, false otherwise.

Hooray!