Home | History | Annotate | Download | only in view

Lines Matching defs:layoutDirection

1861      * Array of horizontal layout direction flags for mapping attribute "layoutDirection" to correct
2027 * layoutDirection is LTR, and ALIGN_RIGHT otherwise.
2036 * layoutDirection is LTR, and ALIGN_LEFT otherwise.
3461 final int layoutDirection = a.getInt(attr, -1);
3462 final int value = (layoutDirection != -1) ?
3463 LAYOUT_DIRECTION_FLAGS[layoutDirection] : LAYOUT_DIRECTION_DEFAULT;
5673 * @param layoutDirection One of {@link #LAYOUT_DIRECTION_LTR},
5682 public void setLayoutDirection(int layoutDirection) {
5683 if (getLayoutDirection() != layoutDirection) {
5689 ((layoutDirection << LAYOUT_DIRECTION_MASK_SHIFT) & LAYOUT_DIRECTION_MASK);
11438 // Order is important here: LayoutDirection MUST be resolved before Padding
11594 * @param layoutDirection the direction of the layout
11600 public void onPaddingChanged(int layoutDirection) {