Searched refs:tempViews (Results 1 – 1 of 1) sorted by relevance
128 ArrayList<View> tempViews = new ArrayList<View>(); in addGhost() local129 int firstGhost = moveGhostViewsToTop(overlay.mOverlayViewGroup, tempViews); in addGhost()130 insertIntoOverlay(overlay.mOverlayViewGroup, parent, ghostView, tempViews, firstGhost); in addGhost()174 private static int moveGhostViewsToTop(ViewGroup viewGroup, ArrayList<View> tempViews) { in moveGhostViewsToTop() argument194 tempViews.add(child); in moveGhostViewsToTop()203 if (tempViews.isEmpty()) { in moveGhostViewsToTop()208 for (int i = tempViews.size() - 1; i >= 0; i--) { in moveGhostViewsToTop()209 viewGroup.addView(tempViews.get(i)); in moveGhostViewsToTop()211 tempViews.clear(); in moveGhostViewsToTop()