Home | History | Annotate | Download | only in widget

Lines Matching defs:ORIENTATION

89  * {@link GridLayout#setOrientation(int) orientation},
180 public @interface Orientation {}
183 * The horizontal orientation.
188 * The vertical orientation.
266 private static final int ORIENTATION = R.styleable.GridLayout_orientation;
307 setOrientation(a.getInt(ORIENTATION, DEFAULT_ORIENTATION));
320 * Returns the current orientation.
328 @Orientation
335 * GridLayout uses the orientation property for two purposes:
343 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
354 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
357 * Other than the effects above, orientation does not affect the actual layout operation of
363 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL}
369 public void setOrientation(@Orientation int orientation) {
370 if (this.mOrientation != orientation) {
371 this.mOrientation = orientation;
1072 // Use the orientation property to decide which axis should be laid out first.