Searched defs:layout (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DSpinner.java112 layout(0, false);
123 void layout(int delta, boolean animate) { method in class:Spinner
168 * there is enough information in the view's layout parameters to animate
201 * and fill out its layout paramters.
207 // Respect layout params that are already in the view. Otherwise
240 child.layout(childLeft, childTop, childRight, childBottom);
H A DGallery.java48 * layout parameters type.
84 * Left most edge of a child seen so far during layout.
89 * Right most edge of a child seen so far during layout.
332 * Remember that we are in layout to prevent more layout request from
336 layout(0, false);
573 * We layout rarely, most of the time {@link #trackMotionScroll(int)} takes
581 void layout(int delta, boolean animate) { method in class:Gallery
601 // All views go in recycler while we are in layout
709 * is enough information in the view's layout parameter
[all...]
H A DTextView.java336 // the layout always wants it to be left.
1025 * than this height, and the layout may contain additional first-
2461 // Display the error later, after the first layout pass
2704 * has changed and that it needs to invalidate and re-layout.
3293 final TextView err = (TextView) inflater.inflate(com.android.internal.R.layout.textview_hint,
3886 Layout layout = mLayout;
3894 layout = mHintLayout;
4050 layout.draw(canvas, highlight, mHighlightPaint, voffsetCursor - voffsetText);
4054 layout.draw(canvas, highlight, mHighlightPaint, voffsetCursor - voffsetText);
4315 // bug 650865: sometimes we get a key event before a layout
5023 desired(Layout layout) argument
5233 getDesiredHeight(Layout layout, boolean cap) argument
[all...]
/frameworks/base/awt/java/awt/font/
H A DTextLayout.java73 * @param layout
77 public TextHitInfo getStrongCaret(TextHitInfo hit1, TextHitInfo hit2, TextLayout layout) { argument
81 int level1 = layout.getCharacterLevel(hit1.getCharIndex());
82 int level2 = layout.getCharacterLevel(hit2.getCharIndex());
221 * Instantiates a new text layout.
260 * @param layout
265 public boolean equals(TextLayout layout) { argument
266 if (layout == null) {
269 return this.breaker.equals(layout.breaker);
551 // awt.196=Justification impossible, layout alread
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java26 * DynamicLayout is a text layout that updates itself as the text is edited.
27 * <p>This is used by widgets to control text layout. You should not need
39 * Make a layout for the specified text that will be updated as
52 * Make a layout for the transformed text (password transformation
66 * Make a layout for the transformed text (password transformation
103 * This is annoying, but we can't refer to the layout until
238 // find affected region of old layout
249 // generate new layout for affected text
268 // If the new layout has a blank line at the end, but it is not
276 // remove affected lines from old layout
406 ChangeWatcher(DynamicLayout layout) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java334 void layout(int l, int t, int r, int b, int alignment) { method in class:SlidingTab.Slider
357 tab.layout(0, top, handleWidth, bottom);
358 text.layout(0 - parentWidth, top, 0, bottom);
360 target.layout(leftTarget, targetTop, leftTarget + targetWidth, targetBottom);
363 tab.layout(parentWidth - handleWidth, top, parentWidth, bottom);
364 text.layout(parentWidth, top, parentWidth + parentWidth, bottom);
365 target.layout(rightTarget, targetTop, rightTarget + targetWidth, targetBottom);
376 tab.layout(left, 0, right, handleHeight);
377 text.layout(left, 0 - parentHeight, right, 0);
378 target.layout(targetLef
[all...]
/frameworks/base/awt/java/awt/
H A DComponent.java1779 * Gets this component's locking object for AWT component tree and layout
2141 * Prompts the layout manager to lay out this component.
2146 layout();
3169 public void layout() { method in class:Component
4295 * Validates that this component has a valid layout.
/frameworks/base/core/java/android/view/
H A DView.java84 * their layout properties.
92 * <br/><a href="{@docRoot}guide/topics/ui/declaring-layout.html">Declaring Layout</a>
94 * <br/><a href="{@docRoot}guide/topics/ui/layout-objects.html">Common Layout Objects</a>
107 * either from code or by specifying a tree of views in one or more XML layout
118 * properties that are known at build time can be set in the XML layout
160 * inflated from a layout file. The second form should parse and apply
161 * any attributes defined in the layout file.
258 * assigned in the layout XML files, and are used to find specific views within
261 * <li>Define a Button in the layout file and assign it a unique ID.
326 * after layout
7028 public final void layout(int l, int t, int r, int b) { method in class:View
[all...]

Completed in 267 milliseconds

123