Lines Matching defs:cling
66 // Disable the migration cling
75 // Set the flag to skip the folder cling
79 // Disable the migration cling
87 * Shows the migration cling.
108 // Show the longpress cling next
122 View cling = mInflater.inflate(R.layout.longpress_cling, root, false);
124 cling.setOnLongClickListener(new OnLongClickListener() {
134 final ViewGroup content = (ViewGroup) cling.findViewById(R.id.cling_content);
145 root.addView(cling);
148 // This is the first cling being shown. No need to animate.
188 /** Hides the specified Cling */
189 @Thunk void dismissCling(final View cling, final Runnable postAnimationCb,
192 // the cling is directly set to GONE before dismissing it.
193 if (cling != null && cling.getVisibility() != View.GONE) {
196 cling.setVisibility(View.GONE);
209 cling.animate().alpha(0).setDuration(duration).withEndAction(cleanUpClingCb);