Searched refs:HORIZONTAL (Results 76 - 100 of 109) sorted by relevance

12345

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDualTileLabel.java65 firstLineLayout.setOrientation(LinearLayout.HORIZONTAL);
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DSlowNestedRecyclerViewActivity.java153 LinearLayoutManager.HORIZONTAL, false));
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuItemView.java95 setOrientation(HORIZONTAL);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DBaseLayoutManagerActivity.java104 configView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL,
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java91 configView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL,
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DBaseLayoutManagerActivity.java104 configView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL,
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java91 configView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL,
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DRecyclerViewTest.java91 LinearLayout.HORIZONTAL, gridLayoutManager.getOrientation());
/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/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java86 setOrientation(LinearLayout.HORIZONTAL);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java75 if (orientation == LinearLayout.HORIZONTAL) {
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTabHost.java165 tw.setOrientation(TabWidget.HORIZONTAL);
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java153 tw.setOrientation(TabWidget.HORIZONTAL);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DHorizontalGridView.java76 mLayoutManager.setOrientation(RecyclerView.HORIZONTAL);
H A DPlaybackControlsPresenter.java239 Gravity.LEFT, ClipDrawable.HORIZONTAL);
/frameworks/base/core/java/com/android/internal/widget/
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;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java90 * @param orientation Layout orientation. Should be {@link #HORIZONTAL} or {@link
117 if (mOrientation == HORIZONTAL) {
152 if (mOrientation == HORIZONTAL) {
226 if (mOrientation == HORIZONTAL) {
803 * If {@link #getOrientation()} is {@link #HORIZONTAL}, this is the number of rows.
1139 * orientation is {@link #HORIZONTAL} the height parameter is ignored because child view is
/frameworks/base/core/java/android/widget/
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...]
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 DTabHost.java330 case LinearLayout.HORIZONTAL:
/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...]
/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/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayout.java412 mNavBarOrientation = barOnBottom ? LinearLayout.HORIZONTAL : VERTICAL;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewCacheTest.java787 LinearLayoutManager.HORIZONTAL, mReverseInner));
1131 LinearLayoutManager.HORIZONTAL, mReverseInner));
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java610 item.setOrientation(LinearLayout.HORIZONTAL);

Completed in 661 milliseconds

12345