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

/frameworks/base/core/java/android/view/
H A DViewManager.java24 public void addView(View view, ViewGroup.LayoutParams params); method in interface:ViewManager
H A DWindowManagerImpl.java83 public void addView(View view) method in class:WindowManagerImpl
85 addView(view, new WindowManager.LayoutParams(
89 public void addView(View view, ViewGroup.LayoutParams params) method in class:WindowManagerImpl
91 addView(view, params, false);
96 addView(view, params, false);
99 private void addView(View view, ViewGroup.LayoutParams params, boolean nest) method in class:WindowManagerImpl
101 if (Config.LOGV) Log.v("WindowManager", "addView view=" + view);
H A DWindow.java380 public final void addView(View view, ViewGroup.LayoutParams params) { method in class:Window.LocalWindowManager
424 mWindowManager.addView(view, params);
H A DViewGroup.java1807 public void addView(View child) { method in class:ViewGroup
1808 addView(child, -1);
1820 public void addView(View child, int index) { method in class:ViewGroup
1828 addView(child, index, params);
1837 public void addView(View child, int width, int height) { method in class:ViewGroup
1841 addView(child, -1, params);
1850 public void addView(View child, LayoutParams params) { method in class:ViewGroup
1851 addView(child, -1, params);
1861 public void addView(View child, int index, LayoutParams params) { method in class:ViewGroup
1863 System.out.println(this + " addView");
[all...]
/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);
85 addView(child, lp);
92 * {@link #addView(android.view.View, int, android.view.ViewGroup.LayoutParams)}
H A DRadioGroup.java126 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:RadioGroup
139 super.addView(child, index, params);
H A DTabWidget.java386 public void addView(View child) { method in class:TabWidget
409 super.addView(divider);
411 super.addView(child);
H A DViewAnimator.java159 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ViewAnimator
160 super.addView(child, index, params);
H A DTableLayout.java393 public void addView(View child) { method in class:TableLayout
394 super.addView(child);
402 public void addView(View child, int index) { method in class:TableLayout
403 super.addView(child, index);
411 public void addView(View child, ViewGroup.LayoutParams params) { method in class:TableLayout
412 super.addView(child, params);
420 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TableLayout
421 super.addView(child, index, params);
H A DRemoteViews.java487 * Equivalent to calling {@link ViewGroup#addView(View)} after inflating the
514 target.addView(nestedViews.apply(context, target));
601 * Equivalent to calling {@link ViewGroup#addView(View)} after inflating the
610 public void addView(int viewId, RemoteViews nestedView) { method in class:RemoteViews
H A DAdapterView.java434 public void addView(View child) { method in class:AdapterView
435 throw new UnsupportedOperationException("addView(View) is not supported in AdapterView");
447 public void addView(View child, int index) { method in class:AdapterView
448 throw new UnsupportedOperationException("addView(View, int) is not supported in AdapterView");
460 public void addView(View child, LayoutParams params) { method in class:AdapterView
461 throw new UnsupportedOperationException("addView(View, LayoutParams) "
475 public void addView(View child, int index, LayoutParams params) { method in class:AdapterView
476 throw new UnsupportedOperationException("addView(View, int, LayoutParams) "
H A DHorizontalScrollView.java215 public void addView(View child) { method in class:HorizontalScrollView
220 super.addView(child);
224 public void addView(View child, int index) { method in class:HorizontalScrollView
229 super.addView(child, index);
233 public void addView(View child, ViewGroup.LayoutParams params) { method in class:HorizontalScrollView
238 super.addView(child, params);
242 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:HorizontalScrollView
247 super.addView(child, index, params);
H A DScrollView.java209 public void addView(View child) { method in class:ScrollView
214 super.addView(child);
218 public void addView(View child, int index) { method in class:ScrollView
223 super.addView(child, index);
227 public void addView(View child, ViewGroup.LayoutParams params) { method in class:ScrollView
232 super.addView(child, params);
236 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:ScrollView
241 super.addView(child, index, params);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DIconMerger.java46 addView(mMoreView, 0, new LinearLayout.LayoutParams(mIconSize, mIconSize));
49 public void addView(StatusBarIconView v, int index) { method in class:IconMerger
53 addView(v, index, new LinearLayout.LayoutParams(mIconSize, mIconSize));
/frameworks/base/core/java/com/android/internal/widget/
H A DTextProgressBar.java79 public void addView(View child, int index, ViewGroup.LayoutParams params) { method in class:TextProgressBar
80 super.addView(child, index, params);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java239 topLayout.addView(systemBar);
252 topLayout.addView(backgroundLayout);
263 backgroundLayout.addView(titleBar);
275 backgroundLayout.addView(mContentRoot);
546 Result result = addView(parentView, child, index);
576 Result result = addView(parentView, child, index);
600 private Result addView(ViewGroup parent, View view, int index) { method in class:RenderSessionImpl
602 parent.addView(view, index);
709 newParent.addView(movedView, index, params);
711 newParent.addView(movedVie
[all...]

Completed in 187 milliseconds