Searched defs:parentView (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java126 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index, argument
128 if (parentView instanceof ViewGroup == false) {
129 throw new IllegalArgumentException("parentView is not a ViewGroup");
136 mLastResult = mSession.insertChild((ViewGroup) parentView, childXml, index,
149 public Result moveChild(Object parentView, Object childView, int index, argument
151 if (parentView instanceof ViewGroup == false) {
152 throw new IllegalArgumentException("parentView is not a ViewGroup");
162 mLastResult = mSession.moveChild((ViewGroup) parentView, (View) childView, index,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java547 public Result insertChild(final ViewGroup parentView, ILayoutPullParser childXml, argument
558 // get added. We do pass the parentView however to ensure that the layoutParams will
560 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
570 parentView.setLayoutTransition(new LayoutTransition());
571 return addView(parentView, child, index);
576 parentView.setLayoutTransition(null);
584 // add it to the parentView in the correct location
585 Result result = addView(parentView, child, index);
783 // add it to the parentView in the correct location
802 // add it to the parentView i
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedActionsStylist.java565 SelectorAnimator(View selectorView, ViewGroup parentView) { argument
567 mParentView = parentView;

Completed in 145 milliseconds