Searched defs:addView (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/core/java/android/view/
H A DViewManager.java34 public void addView(View view, ViewGroup.LayoutParams params); method in interface:ViewManager
H A DWindowManagerImpl.java83 public void addView(@NonNull View view, @NonNull ViewGroup.LayoutParams params) { method in class:WindowManagerImpl
85 mGlobal.addView(view, params, mDisplay, mParentWindow);
H A DWindowManagerGlobal.java231 public void addView(View view, ViewGroup.LayoutParams params, method in class:WindowManagerGlobal
/frameworks/base/core/java/android/widget/
H A DTextSwitcher.java61 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TextSwitcher
67 super.addView(child, index, params);
H A DViewSwitcher.java62 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ViewSwitcher
66 super.addView(child, index, params);
90 addView(child, lp);
97 * {@link #addView(android.view.View, int, android.view.ViewGroup.LayoutParams)}
H A DDateTimeView.java82 ri.addView(this);
227 public void addView(DateTimeView v) { method in class:DateTimeView.ReceiverInfo
H A DRadioGroup.java127 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:RadioGroup
140 super.addView(child, index, params);
H A DViewAnimator.java182 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ViewAnimator
183 super.addView(child, index, params);
H A DTabWidget.java482 public void addView(View child) { method in class:TabWidget
495 super.addView(child);
H A DTableLayout.java398 public void addView(View child) { method in class:TableLayout
399 super.addView(child);
407 public void addView(View child, int index) { method in class:TableLayout
408 super.addView(child, index);
416 public void addView(View child, ViewGroup.LayoutParams params) { method in class:TableLayout
417 super.addView(child, params);
425 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TableLayout
426 super.addView(child, index, params);
H A DAdapterView.java468 public void addView(View child) { method in class:AdapterView
469 throw new UnsupportedOperationException("addView(View) is not supported in AdapterView");
481 public void addView(View child, int index) { method in class:AdapterView
482 throw new UnsupportedOperationException("addView(View, int) is not supported in AdapterView");
494 public void addView(View child, LayoutParams params) { method in class:AdapterView
495 throw new UnsupportedOperationException("addView(View, LayoutParams) "
509 public void addView(View child, int index, LayoutParams params) { method in class:AdapterView
510 throw new UnsupportedOperationException("addView(View, int, LayoutParams) "
H A DHorizontalScrollView.java223 public void addView(View child) { method in class:HorizontalScrollView
228 super.addView(child);
232 public void addView(View child, int index) { method in class:HorizontalScrollView
237 super.addView(child, index);
241 public void addView(View child, ViewGroup.LayoutParams params) { method in class:HorizontalScrollView
246 super.addView(child, params);
250 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:HorizontalScrollView
255 super.addView(child, index, params);
H A DRemoteViews.java1331 * Equivalent to calling {@link ViewGroup#addView(View)} after inflating the
1373 target.addView(nestedViews.apply(context, target, handler));
2007 * Equivalent to calling {@link ViewGroup#addView(View)} after inflating the
2016 public void addView(int viewId, RemoteViews nestedView) { method in class:RemoteViews
H A DScrollView.java249 public void addView(View child) { method in class:ScrollView
254 super.addView(child);
258 public void addView(View child, int index) { method in class:ScrollView
263 super.addView(child, index);
267 public void addView(View child, ViewGroup.LayoutParams params) { method in class:ScrollView
272 super.addView(child, params);
276 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ScrollView
281 super.addView(child, index, params);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
H A DWindowManagerImpl.java47 public void addView(View arg0, android.view.ViewGroup.LayoutParams arg1) { method in class:WindowManagerImpl
/frameworks/base/core/java/android/preference/
H A DPreferenceFrameLayout.java88 public void addView(View child) { method in class:PreferenceFrameLayout
127 super.addView(child);
/frameworks/base/core/java/com/android/internal/widget/
H A DTextProgressBar.java82 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TextProgressBar
83 super.addView(child, index, params);
H A DViewPager.java1298 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ViewPager
1311 super.addView(child, index, params);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DSetupWizardLayout.java55 * will be added to when {@link #addView(android.view.View)} is called. This will be the layout
177 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:SetupWizardLayout
178 mContainer.addView(child, index, params);
182 super.addView(child, -1, generateDefaultLayoutParams());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java84 void addView(View child, boolean hidden) { method in class:ChildHelper
85 addView(child, -1, hidden);
96 void addView(View child, int index, boolean hidden) { method in class:ChildHelper
107 mCallback.addView(child, offset);
498 void addView(View child, int index); method in interface:ChildHelper.Callback
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java132 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TextInputLayout
135 super.addView(child, 0, updateEditTextMargin(params));
138 super.addView(child, index, params);
300 addView(mErrorView);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java571 return addView(parentView, child, index);
585 Result result = addView(parentView, child, index);
609 private Result addView(ViewGroup parent, View view, int index) { method in class:RenderSessionImpl
611 parent.addView(view, index);
785 newParent.addView(movedView, index, params);
787 newParent.addView(movedView, index);
804 newParent.addView(movedView, index, params);
806 newParent.addView(movedView, index);
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java1729 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:DrawerLayout
1730 super.addView(child, index, params);
H A DNestedScrollView.java343 public void addView(View child) { method in class:NestedScrollView
348 super.addView(child);
352 public void addView(View child, int index) { method in class:NestedScrollView
357 super.addView(child, index);
361 public void addView(View child, ViewGroup.LayoutParams params) { method in class:NestedScrollView
366 super.addView(child, params);
370 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:NestedScrollView
375 super.addView(child, index, params);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1329 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ViewPager
1342 super.addView(child, index, params);

Completed in 2347 milliseconds

12