Searched defs:layout (Results 101 - 106 of 106) sorted by relevance

12345

/frameworks/base/core/java/android/view/
H A DViewGroup.java74 * Also see {@link LayoutParams} for layout attributes.
80 * <a href="{@docRoot}guide/topics/ui/declaring-layout.html">XML Layouts</a> developer
90 * <p>If you are implementing XML layout attributes as shown in the example, this is the
95 * <p>Finally the layout manager can be used in an XML layout like so:</p>
97 * {@sample development/samples/ApiDemos/res/layout/custom_layout.xml Complete}
240 // When set, dispatchDraw() will run the layout animation and unset the flag
243 // When set, there is either no layout animation on the ViewGroup or the layout
256 // layout animatio
5432 public final void layout(int l, int t, int r, int b) { method in class:ViewGroup
[all...]
H A DView.java136 * their layout properties.
149 * either from code or by specifying a tree of views in one or more XML layout
160 * properties that are known at build time can be set in the XML layout
202 * inflated from a layout file. The second form should parse and apply
203 * any attributes defined in the layout file.
300 * assigned in the layout XML files, and are used to find specific views within
303 * <li>Define a Button in the layout file and assign it a unique ID.
369 * after layout. These values may, but do not have to, be different from the
396 * Layout is a two pass process: a measure pass and a layout pass. The measuring
401 * {@link #layout(in
16615 public void layout(int l, int t, int r, int b) { method in class:View
[all...]
/frameworks/base/core/java/android/widget/
H A DEditor.java431 com.android.internal.R.layout.textview_hint, null);
873 final Layout layout = mTextView.getLayout();
874 if (layout == null) return offset;
876 final int nextOffset = layout.getPaint().getTextRunCursor(text, 0, text.length(),
877 layout.isRtlCharAt(offset) ? Paint.DIRECTION_RTL : Paint.DIRECTION_LTR,
968 Layout layout = mTextView.getLayout();
969 if (layout == null) return false;
971 final int line = layout.getLineForOffset(offset);
972 final int lineBottom = layout.getLineBottom(line);
973 final int primaryHorizontal = (int) layout
1475 onDraw(Canvas canvas, Layout layout, Path highlight, Paint highlightPaint, int cursorOffsetVertical) argument
1514 drawHardwareAccelerated(Canvas canvas, Layout layout, Path highlight, Paint highlightPaint, int cursorOffsetVertical) argument
1645 invalidateTextDisplayList(Layout layout, int start, int end) argument
4526 getCurrentLineAdjustedForSlop(Layout layout, int prevLine, float y) argument
[all...]
H A DTextView.java524 * extensively in the same layout. This mode indicates how the marquee
531 * the layout that should be used when the mode switches.
1662 * than this height, and the layout may contain additional first-
4097 // Display the error later, after the first layout pass
4363 * has changed and that it needs to invalidate and re-layout.
5236 // a screen rotation) since layout is not yet initialized at that point.
5642 Layout layout = mLayout;
5649 layout = mHintLayout;
5702 canvas.translate(layout.getParagraphDirection(0) * dx, 0.0f);
5707 canvas.translate(layout
6794 desired(Layout layout) argument
7029 getDesiredHeight(Layout layout, boolean cap) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java89 * later. This can drastically improve performance by skipping initial layout inflation
92 * state during layout. Scrap views may be reused without becoming fully detached
102 * {@link LayoutManager} to be able to detect data set changes in batches during a layout
109 * <li>layout position: Position of an item in the latest layout calculation. This is the
116 * </code> events and calculating the updated layout.
119 * layout calculation (e.g. {@link ViewHolder#getLayoutPosition()},
121 * last layout calculation. You can rely on these positions to be consistent with what user is
129 * work with up-to-date adapter positions even if they may not have been reflected to layout yet.
132 * adapter positions if {@link Adapter#notifyDataSetChanged()} has been called and new layout ha
949 setLayoutManager(LayoutManager layout) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 6100 milliseconds

12345