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

/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DUiUtils.java109 * @param existingView The {@link View} to insert the newView before.
112 public static int insertBefore(ViewGroup container, View newView, View existingView) { argument
113 return insertView(container, newView, existingView, false);
120 * @param existingView The {@link View} to insert the newView after.
123 public static int insertAfter(ViewGroup container, View newView, View existingView) { argument
124 return insertView(container, newView, existingView, true);
128 ViewGroup container, View newView, View existingView, boolean after) {
134 index = container.indexOfChild(existingView);
127 insertView( ViewGroup container, View newView, View existingView, boolean after) argument

Completed in 173 milliseconds