Lines Matching refs:content
24 import android.content.Context;
25 import android.content.SharedPreferences;
135 final ViewGroup content = (ViewGroup) cling.findViewById(R.id.cling_content); in showLongPressCling() local
137 : R.layout.longpress_cling_content, content); in showLongPressCling()
138 content.findViewById(R.id.cling_dismiss_longpress_info).setOnClickListener(this); in showLongPressCling()
140 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) { in showLongPressCling()
143 content.setBackground(bg); in showLongPressCling()
154 content.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { in showLongPressCling()
158 content.getViewTreeObserver().removeOnGlobalLayoutListener(this); in showLongPressCling()
161 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) { in showLongPressCling()
162 content.setTranslationY(-content.getMeasuredHeight()); in showLongPressCling()
163 anim = LauncherAnimUtils.ofFloat(content, "translationY", 0); in showLongPressCling()
165 content.setScaleX(0); in showLongPressCling()
166 content.setScaleY(0); in showLongPressCling()
169 anim = LauncherAnimUtils.ofPropertyValuesHolder(content, scaleX, scaleY); in showLongPressCling()