HomeSort by relevance Sort by last modified time
    Searched refs:HORIZONTAL (Results 51 - 75 of 357) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/Demo/tkinter/matt/
animation-w-velocity-ctrl.py 20 self.speed = Scale(self, orient=HORIZONTAL, from_=-100, to=100)
canvas-with-scrollbars.py 28 self.draw.scrollX = Scrollbar(self, orient=HORIZONTAL)
pong-demo-1.py 16 self.speed = Scale(self, orient=HORIZONTAL, label="ball speed",
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
AdjacentVerticalRectLists.java 67 mLayout.setOrientation(LinearLayout.HORIZONTAL);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
InvalidateTreeActivity.java 46 parent.setOrientation(vertical ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
50 // vertical: match parent in x axis, horizontal: y axis.
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
PagerRecyclerViewActivity.java 40 new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
  /frameworks/support/wear/src/androidTest/java/androidx/wear/widget/
SwipeDismissFrameLayoutTestActivity.java 37 boolean horizontal = getIntent().getBooleanExtra(EXTRA_LAYOUT_HORIZONTAL, false);
40 createScrollableContent(horizontal);
44 private void createScrollableContent(boolean horizontal) {
52 horizontal ? LinearLayoutManager.HORIZONTAL : LinearLayoutManager.VERTICAL,
  /packages/apps/Settings/src/com/android/settings/graph/
BottomLabelLayout.java 85 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java 59 * horizontal edges.
73 * Default value is 100% per second for both vertical and horizontal.
132 private static final int HORIZONTAL = 0;
286 * @param horizontalMax The maximum horizontal scrolling velocity, or
293 mMaximumVelocity[HORIZONTAL] = horizontalMax / 1000f;
304 * @param horizontalMin The minimum horizontal scrolling velocity, or
311 mMinimumVelocity[HORIZONTAL] = horizontalMin / 1000f;
323 * @param horizontal The target horizontal velocity as a fraction of the
331 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical)
    [all...]
OrientationHelper.java 26 * It is developed to easily support vertical and horizontal orientations in a LayoutManager but
39 public static final int HORIZONTAL = LinearLayout.HORIZONTAL;
77 * For example, for the horizontal helper, if a View's left is at pixel 20, has 2px left
89 * For example, for the horizontal helper, if a View's right is at pixel 200, has 2px right
195 * Returns the padding at the end of the layout. For horizontal helper, this is the right
229 * @param orientation Desired orientation. Should be {@link #HORIZONTAL} or {@link #VERTICAL}
235 case HORIZONTAL:
244 * Creates a horizontal OrientationHelper for the given LayoutManager.
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
GridLayoutManagerRtlTest.java 19 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
103 if (mConfig.mOrientation == HORIZONTAL) {
DividerItemDecorationTest.java 50 DividerItemDecoration.HORIZONTAL);
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayoutActivity.java 51 * The number of folds, orientation (vertical or horizontal) of the fold, and the
84 private Orientation mOrientation = Orientation.HORIZONTAL;
284 mOrientation = (mOrientation == Orientation.HORIZONTAL) ? Orientation.VERTICAL :
285 Orientation.HORIZONTAL;
286 item.setTitle((mOrientation == Orientation.HORIZONTAL) ? R.string.vertical :
287 R.string.horizontal);
371 * scrolling to fold a vertically oriented view and horizontal scrolling to fold
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
ValueMarker.java 38 HORIZONTAL,
  /external/python/cpython2/Demo/tix/samples/
OptMenu.py 53 box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
PopMenu.py 46 box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
ButtonBarLayout.java 99 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
NonOverlappingLinearLayout.java 66 && getOrientation() == HORIZONTAL
WindowAlignment.java 21 import static androidx.recyclerview.widget.RecyclerView.HORIZONTAL;
354 private int mOrientation = HORIZONTAL;
358 public final Axis horizontal = new Axis("horizontal"); field in class:WindowAlignment
360 private Axis mMainAxis = horizontal;
374 if (mOrientation == HORIZONTAL) {
375 mMainAxis = horizontal;
379 mSecondAxis = horizontal;
393 return "horizontal=" + horizontal + "; vertical=" + vertical
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
EllipsizeLayout.java 10 * When this layout is in the Horizontal orientation and one and only one child is a TextView with a
15 * <li>the orientation is not horizontal</li>
20 * <p>The purpose of this horizontal-linear-layout is to ensure that when the sum of widths of the
46 * This override only acts when the LinearLayout is in the Horizontal orientation and is in it's
58 * @param widthMeasureSpec horizontal space requirements as imposed by the parent
63 if (getOrientation() == HORIZONTAL
  /packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/
LandscapeEdgeSwipeController.java 27 super(l, SwipeDetector.HORIZONTAL);
  /packages/apps/Messaging/src/com/android/messaging/ui/
AudioPlaybackProgressBar.java 109 ClipDrawable.HORIZONTAL);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
ButtonBarLayout.java 98 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageEditorPanel.java 51 SashForm sashForm = new SashForm(this, SWT.HORIZONTAL);
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 54 public static final int HORIZONTAL = 1;
73 * @param orientation bitwise-or of {@link #HORIZONTAL} and/or
186 if ((mState.mOrientation & HORIZONTAL) != 0) {
216 int mOrientation = HORIZONTAL;

Completed in 1802 milliseconds

1 23 4 5 6 7 8 91011>>