Searched defs:inflate (Results 26 - 41 of 41) sorted by relevance

12

/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DAnimatedVectorDrawableCompat.java193 drawable.inflate(resources, parser, attrs, context.getTheme());
297 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:AnimatedVectorDrawableCompat
348 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs) method in class:AnimatedVectorDrawableCompat
350 inflate(res, parser, attrs, null);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DSupportMenuInflater.java102 * @param menu The Menu to inflate into. The items and submenus will be
106 public void inflate(int menuRes, Menu menu) { method in class:SupportMenuInflater
109 super.inflate(menuRes, menu);
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java348 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
373 public View inflate(@LayoutRes int resource, @Nullable ViewGroup root) { method in class:LayoutInflater
374 return inflate(resource, root, root != null);
393 public View inflate(XmlPullParser parser, @Nullable ViewGroup root) { method in class:LayoutInflater
394 return inflate(parser, root, root != null);
414 public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
423 return inflate(parser, root, attachToRoot);
451 public View inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) { method in class:LayoutInflater
453 Trace.traceBegin(Trace.TRACE_TAG_VIEW, "inflate");
713 * @param parent the parent view, used to inflate layou
[all...]
H A DView.java19777 * @param resource The resource ID to inflate
19778 * @param root A view group that will be the parent. Used to properly inflate the
19782 public static View inflate(Context context, @LayoutRes int resource, ViewGroup root) { method in class:View
19784 return factory.inflate(resource, root);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java375 public void inflate(@NonNull Resources r, @NonNull XmlPullParser parser, method in class:AnimatedStateListDrawable
H A DAnimatedVectorDrawable.java145 * to inflate animators if applyTheme() doesn't get called.
302 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:AnimatedVectorDrawable
480 * If there are any pending uninflated animators, attempts to inflate
485 * @param res the resources against which to inflate any pending
491 // support for Animator.applyTheme(). See comments in inflate().
536 * @param t the theme against which to inflate the animators
H A DNinePatchDrawable.java405 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:NinePatchDrawable
407 super.inflate(r, parser, attrs, theme);
H A DShapeDrawable.java379 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:ShapeDrawable
381 super.inflate(r, parser, attrs, theme);
H A DBitmapDrawable.java719 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:BitmapDrawable
721 super.inflate(r, parser, attrs, theme);
H A DDrawable.java1215 drawable.inflate(r, parser, attrs, theme);
1244 * @see #inflate(Resources, XmlPullParser, AttributeSet, Theme)
1246 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) method in class:Drawable
1248 inflate(r, parser, attrs, null);
1255 * @param parser XML parser from which to inflate this Drawable
1261 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:Drawable
H A DRippleDrawable.java406 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:RippleDrawable
415 super.inflate(r, parser, attrs, theme);
H A DGradientDrawable.java1016 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:GradientDrawable
H A DLayerDrawable.java156 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:LayerDrawable
158 super.inflate(r, parser, attrs, theme);
H A DVectorDrawable.java541 drawable.inflate(resources, parser, attrs);
560 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:VectorDrawable
666 path.inflate(res, attrs, theme);
675 path.inflate(res, attrs, theme);
683 newChildGroup.inflate(res, attrs, theme);
1260 public void inflate(Resources res, AttributeSet attrs, Theme theme) { method in class:VectorDrawable.VGroup
1476 public void inflate(Resources r, AttributeSet attrs, Theme theme) { method in class:VectorDrawable.VClipPath
1581 public void inflate(Resources r, AttributeSet attrs, Theme theme) { method in class:VectorDrawable.VFullPath
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java108 * through the {@link Bridge} API to inflate the layout. Further actions and rendering can then
202 public Result inflate() { method in class:RenderSessionImpl
223 view = mInflater.inflate(mBlockParser, mContentRoot);
234 // post-inflate process. For now this supports TabHost/TabWidget
557 // inflate the child without adding it to the root since we want to control where it'll
560 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java422 drawable.inflate(res, parser, attrs, theme);
454 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs) method in class:VectorDrawableCompat
456 inflate(res, parser, attrs, null);
459 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme) method in class:VectorDrawableCompat
551 path.inflate(res, attrs, theme);
560 path.inflate(res, attrs, theme);
568 newChildGroup.inflate(res, attrs, theme);
1020 public void inflate(Resources res, AttributeSet attrs, Theme theme) { method in class:VectorDrawableCompat.VGroup
1222 public void inflate(Resources r, AttributeSet attrs, Theme theme) { method in class:VectorDrawableCompat.VClipPath
1328 public void inflate(Resource method in class:VectorDrawableCompat.VFullPath
[all...]

Completed in 1166 milliseconds

12