Searched refs:tempViews (Results 1 – 1 of 1) sorted by relevance
123 ArrayList<View> tempViews = new ArrayList<View>(); in addGhost() local124 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() argument187 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()