Home
last modified time | relevance | path

Searched refs:tempViews (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
DGhostView.java123 ArrayList<View> tempViews = new ArrayList<View>(); in addGhost() local
124 int firstGhost = moveGhostViewsToTop(overlay.mOverlayViewGroup, tempViews); in addGhost()
125 insertIntoOverlay(overlay.mOverlayViewGroup, parent, ghostView, tempViews, firstGhost); in addGhost()
167 private static int moveGhostViewsToTop(ViewGroup viewGroup, ArrayList<View> tempViews) { in moveGhostViewsToTop() argument
187 tempViews.add(child); in moveGhostViewsToTop()
196 if (tempViews.isEmpty()) { in moveGhostViewsToTop()
201 for (int i = tempViews.size() - 1; i >= 0; i--) { in moveGhostViewsToTop()
202 viewGroup.addView(tempViews.get(i)); in moveGhostViewsToTop()
204 tempViews.clear(); in moveGhostViewsToTop()