Searched defs:HORIZONTAL (Results 1 - 18 of 18) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDividerItemDecoration.java32 * between items of a {@link LinearLayoutManager}. It supports both {@link #HORIZONTAL} and
42 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:DividerItemDecoration
51 * Current orientation. Either {@link #HORIZONTAL} or {@link #VERTICAL}.
62 * @param orientation Divider orientation. Should be {@link #HORIZONTAL} or {@link #VERTICAL}.
79 * @param orientation {@link #HORIZONTAL} or {@link #VERTICAL}
82 if (orientation != HORIZONTAL && orientation != VERTICAL) {
84 "Invalid orientation. It should be either HORIZONTAL or VERTICAL");
H A DOrientationHelper.java39 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:OrientationHelper
229 * @param orientation Desired orientation. Should be {@link #HORIZONTAL} or {@link #VERTICAL}
235 case HORIZONTAL:
H A DLinearLayoutManager.java51 public static final int HORIZONTAL = OrientationHelper.HORIZONTAL; field in class:LinearLayoutManager
67 * Current orientation. Either {@link #HORIZONTAL} or {@link #VERTICAL}
162 * @param orientation Layout orientation. Should be {@link #HORIZONTAL} or {@link
285 * @return true if {@link #getOrientation()} is {@link #HORIZONTAL}
289 return mOrientation == HORIZONTAL;
319 * @return Current orientation, either {@link #HORIZONTAL} or {@link #VERTICAL}
330 * @param orientation {@link #HORIZONTAL} or {@link #VERTICAL}
333 if (orientation != HORIZONTAL && orientation != VERTICAL) {
457 if (mOrientation == HORIZONTAL) {
[all...]
H A DStaggeredGridLayoutManager.java62 public static final int HORIZONTAL = OrientationHelper.HORIZONTAL; field in class:StaggeredGridLayoutManager
247 * @param orientation {@link #VERTICAL} or {@link #HORIZONTAL}
444 * @param orientation {@link #HORIZONTAL} or {@link #VERTICAL}
447 if (orientation != HORIZONTAL && orientation != VERTICAL) {
1250 if (mOrientation == HORIZONTAL) {
1298 if (mOrientation == HORIZONTAL) {
1933 if (mOrientation == HORIZONTAL) {
1990 return mOrientation == HORIZONTAL;
2020 if (mOrientation == HORIZONTAL) {
[all...]
H A DRecyclerView.java208 public static final int HORIZONTAL = 0; field in class:RecyclerView
/frameworks/base/core/java/com/android/internal/widget/
H A DOrientationHelper.java39 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:OrientationHelper
229 * @param orientation Desired orientation. Should be {@link #HORIZONTAL} or {@link #VERTICAL}
235 case HORIZONTAL:
H A DAutoScrollHelper.java132 private static final int HORIZONTAL = 0; field in class:AutoScrollHelper
293 mMaximumVelocity[HORIZONTAL] = horizontalMax / 1000f;
311 mMinimumVelocity[HORIZONTAL] = horizontalMin / 1000f;
332 mRelativeVelocity[HORIZONTAL] = horizontal / 1000f;
372 mRelativeEdges[HORIZONTAL] = horizontal;
394 mMaximumEdges[HORIZONTAL] = horizontalMax;
467 HORIZONTAL, event.getX(), v.getWidth(), mTarget.getWidth());
H A DSlidingTab.java57 private static final int HORIZONTAL = 0; // as defined in attrs.xml field in class:SlidingTab
82 * Either {@link #HORIZONTAL} or {@link #VERTICAL}.
460 mOrientation = a.getInt(R.styleable.SlidingTab_orientation, HORIZONTAL);
722 return mOrientation == HORIZONTAL;
H A DLinearLayoutManager.java47 public static final int HORIZONTAL = OrientationHelper.HORIZONTAL; field in class:LinearLayoutManager
63 * Current orientation. Either {@link #HORIZONTAL} or {@link #VERTICAL}
158 * @param orientation Layout orientation. Should be {@link #HORIZONTAL} or {@link
281 * @return true if {@link #getOrientation()} is {@link #HORIZONTAL}
285 return mOrientation == HORIZONTAL;
315 * @return Current orientation, either {@link #HORIZONTAL} or {@link #VERTICAL}
326 * @param orientation {@link #HORIZONTAL} or {@link #VERTICAL}
329 if (orientation != HORIZONTAL && orientation != VERTICAL) {
453 if (mOrientation == HORIZONTAL) {
[all...]
H A DRecyclerView.java189 public static final int HORIZONTAL = 0; field in class:RecyclerView
/frameworks/base/graphics/java/android/graphics/drawable/
H A DClipDrawable.java54 public static final int HORIZONTAL = 1; field in class:ClipDrawable
73 * @param orientation bitwise-or of {@link #HORIZONTAL} and/or
186 if ((mState.mOrientation & HORIZONTAL) != 0) {
216 int mOrientation = HORIZONTAL;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java43 public static final int HORIZONTAL = 0; // Consume taps along the top edge. field in class:DeadZone
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java90 @IntDef({HORIZONTAL, VERTICAL})
94 public static final int HORIZONTAL = 0; field in class:LinearLayout
1056 * to {@link #HORIZONTAL}.
1649 if (mOrientation == HORIZONTAL) {
1657 * LinearLayout is set to {@link #HORIZONTAL}.
1796 * @param orientation Pass {@link #HORIZONTAL} or {@link #VERTICAL}. Default
1797 * value is {@link #HORIZONTAL}.
1811 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
1822 * HORIZONTAL orientation, this controls the alignment of the children.
1882 * {@link #HORIZONTAL}, th
[all...]
H A DGridLayout.java175 @IntDef({HORIZONTAL, VERTICAL})
182 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:GridLayout
252 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
316 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
337 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
348 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
352 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even if
355 * The default value of this property is {@link #HORIZONTAL}.
357 * @param orientation either {@link #HORIZONTAL} o
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java256 @IntDef({HORIZONTAL, VERTICAL})
258 private static final int HORIZONTAL = 0; field in class:TaskStack.DockState
262 public static final DockState NONE = new DockState(DOCKED_INVALID, -1, 80, 255, HORIZONTAL,
269 DOCKED_STACK_CREATE_MODE_TOP_OR_LEFT, DOCK_AREA_ALPHA, 0, HORIZONTAL,
277 DOCKED_STACK_CREATE_MODE_BOTTOM_OR_RIGHT, DOCK_AREA_ALPHA, 0, HORIZONTAL,
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DAutoScrollHelper.java132 private static final int HORIZONTAL = 0; field in class:AutoScrollHelper
293 mMaximumVelocity[HORIZONTAL] = horizontalMax / 1000f;
311 mMinimumVelocity[HORIZONTAL] = horizontalMin / 1000f;
332 mRelativeVelocity[HORIZONTAL] = horizontal / 1000f;
372 mRelativeEdges[HORIZONTAL] = horizontal;
394 mMaximumEdges[HORIZONTAL] = horizontalMax;
467 HORIZONTAL, event.getX(), v.getWidth(), mTarget.getWidth());
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java60 @IntDef({HORIZONTAL, VERTICAL})
64 public static final int HORIZONTAL = 0; field in class:LinearLayoutCompat
917 * to {@link #HORIZONTAL}.
1510 * LinearLayout is set to {@link #HORIZONTAL}.
1650 * @param orientation Pass {@link #HORIZONTAL} or {@link #VERTICAL}. Default
1651 * value is {@link #HORIZONTAL}.
1663 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
1674 * HORIZONTAL orientation, this controls the alignment of the children.
1729 * {@link #HORIZONTAL}, the width is set to {@link LayoutParams#WRAP_CONTENT}
1734 if (mOrientation == HORIZONTAL) {
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java172 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:GridLayout
237 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
306 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
326 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
337 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
341 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even if
344 * The default value of this property is {@link #HORIZONTAL}.
346 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL}
730 final boolean horizontal = (mOrientation == HORIZONTAL);
[all...]

Completed in 367 milliseconds