Searched refs:tempViews (Results 1 – 1 of 1) sorted by relevance
129 ArrayList<View> tempViews = new ArrayList<View>(); in addGhost() local130 int firstGhost = moveGhostViewsToTop(overlay.mOverlayViewGroup, tempViews); in addGhost()131 insertIntoOverlay(overlay.mOverlayViewGroup, parent, ghostView, tempViews, firstGhost); in addGhost()173 private static int moveGhostViewsToTop(ViewGroup viewGroup, ArrayList<View> tempViews) { in moveGhostViewsToTop() argument193 tempViews.add(child); in moveGhostViewsToTop()202 if (tempViews.isEmpty()) { in moveGhostViewsToTop()207 for (int i = tempViews.size() - 1; i >= 0; i--) { in moveGhostViewsToTop()208 viewGroup.addView(tempViews.get(i)); in moveGhostViewsToTop()210 tempViews.clear(); in moveGhostViewsToTop()