Determines in which direction the next view lays.
Consider the View at index n. Typically the
View
s
are layed out from left to right, so that the
View
to the EAST will be at index n + 1, and the
View
to the WEST will be at index n - 1. In certain situations,
such as with bidirectional text, it is possible
that the
View
to EAST is not at index n + 1,
but rather at index n - 1, or that the
View
to the WEST is not at index n - 1, but index n + 1.
In this case this method would return true,
indicating the
View
s are layed out in
descending order. Otherwise the method would return false
indicating the
View
s are layed out in ascending order.
If the receiver is laying its View
s along the
Y_AXIS
, this will will return the value from
invoking the same method on the View
responsible for rendering position
and
bias
. Otherwise this will return false.
Returns:
true if the View
s surrounding the
View
responding for rendering
position
and bias
are layed out in descending order; otherwise false
Parameters:
- position - position into the model
- bias - either Position.Bias.Forward
or
Position.Bias.Backward