Lines Matching full:cling
65 // Disable the migration cling
74 // Set the flag to skip the folder cling
80 // Disable the migration cling
88 * Shows the migration cling.
108 // Show the longpress cling next
121 View cling = mInflater.inflate(R.layout.longpress_cling, root, false);
123 cling.setOnLongClickListener(new OnLongClickListener() {
133 final ViewGroup content = (ViewGroup) cling.findViewById(R.id.cling_content);
144 root.addView(cling);
147 // This is the first cling being shown. No need to animate.
187 /** Hides the specified Cling */
188 private void dismissCling(final View cling, final Runnable postAnimationCb,
191 // the cling is directly set to GONE before dismissing it.
192 if (cling != null && cling.getVisibility() != View.GONE) {
195 cling.setVisibility(View.GONE);
207 cling.animate().alpha(0).setDuration(duration).withEndAction(cleanUpClingCb);