Searched defs:inflate (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DColorDrawable.java112 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ColorDrawable
114 super.inflate(r, parser, attrs);
H A DLevelListDrawable.java86 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:LevelListDrawable
89 super.inflate(r, parser, attrs);
H A DStateListDrawable.java106 public void inflate(Resources r, XmlPullParser parser, method in class:StateListDrawable
H A DAnimatedRotateDrawable.java214 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimatedRotateDrawable
H A DAnimationDrawable.java221 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:AnimationDrawable
H A DClipDrawable.java75 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ClipDrawable
77 super.inflate(r, parser, attrs);
H A DInsetDrawable.java76 @Override public void inflate(Resources r, XmlPullParser parser, method in class:InsetDrawable
H A DNinePatchDrawable.java228 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:NinePatchDrawable
230 super.inflate(r, parser, attrs);
H A DRotateDrawable.java199 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:RotateDrawable
H A DScaleDrawable.java87 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ScaleDrawable
89 super.inflate(r, parser, attrs);
H A DBitmapDrawable.java362 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:BitmapDrawable
364 super.inflate(r, parser, attrs);
H A DShapeDrawable.java302 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ShapeDrawable
304 super.inflate(r, parser, attrs);
H A DDrawable.java787 drawable.inflate(r, parser, attrs);
808 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:Drawable
H A DLayerDrawable.java107 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:LayerDrawable
109 super.inflate(r, parser, attrs);
H A DGradientDrawable.java584 public void inflate(Resources r, XmlPullParser parser, method in class:GradientDrawable
/frameworks/base/core/java/android/content/res/
H A DColorStateList.java150 colorStateList.inflate(r, parser, attrs);
173 private void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:ColorStateList
/frameworks/base/core/java/android/view/
H A DViewStub.java29 * A ViewStub is an invisible, zero-sized View that can be used to lazily inflate
32 * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
35 * {@link #inflate()} is invoked.
38 * parameters. Similarly, you can define/override the inflate View's id by using the
59 * View inflated = stub.inflate();
62 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
149 * {@link #inflate()} to replace this StubbedView
152 * @return The layout resource identifier used to inflate the new View.
156 * @see #inflate()
164 * Specifies the layout resource to inflate whe
225 public View inflate() { method in class:ViewStub
[all...]
H A DLayoutInflater.java250 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
275 public View inflate(int resource, ViewGroup root) { method in class:LayoutInflater
276 return inflate(resource, root, root != null);
295 public View inflate(XmlPullParser parser, ViewGroup root) { method in class:LayoutInflater
296 return inflate(parser, root, root != null);
316 public View inflate(int resource, ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
320 return inflate(parser, root, attachToRoot);
348 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
H A DMenuInflater.java71 * @param menu The Menu to inflate into. The items and submenus will be
74 public void inflate(int menuRes, Menu menu) { method in class:MenuInflater
H A DView.java8800 * @param resource The resource ID to inflate
8801 * @param root A view group that will be the parent. Used to properly inflate the
8805 public static View inflate(Context context, int resource, ViewGroup root) { method in class:View
8807 return factory.inflate(resource, root);
/frameworks/base/core/java/android/webkit/
H A DWebHistoryItem.java195 /*package*/ void inflate(int nativeFrame) { method in class:WebHistoryItem
196 inflate(nativeFrame, mFlattenedData);
206 /* Natively inflate this item, this method is called in the WebCore thread.
208 private native void inflate(int nativeFrame, byte[] data); method in class:WebHistoryItem
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeInflater.java154 public View inflate(int resource, ViewGroup root) { method in class:BridgeInflater
185 return inflate(bridgeParser, root);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java40 * @param T The type of the items to inflate
219 public T inflate(int resource, P root) { method in class:GenericInflater
220 return inflate(resource, root, root != null);
239 public T inflate(XmlPullParser parser, P root) { method in class:GenericInflater
240 return inflate(parser, root, root != null);
259 public T inflate(int resource, P root, boolean attachToRoot) { method in class:GenericInflater
263 return inflate(parser, root, attachToRoot);
290 public T inflate(XmlPullParser parser, P root, method in class:GenericInflater
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java93 * through the {@link Bridge} API to inflate the layout. Further actions and rendering can then
196 public Result inflate() { method in class:RenderSessionImpl
279 View view = mInflater.inflate(mBlockParser, mContentRoot);
292 // post-inflate process. For now this supports TabHost/TabWidget
532 // inflate the child without adding it to the root since we want to control where it'll
535 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);

Completed in 413 milliseconds