Lines Matching refs:content
24 import android.content.Context;
25 import android.content.SharedPreferences;
133 final ViewGroup content = (ViewGroup) cling.findViewById(R.id.cling_content); in showLongPressCling() local
135 : R.layout.longpress_cling_content, content); in showLongPressCling()
136 content.findViewById(R.id.cling_dismiss_longpress_info).setOnClickListener(this); in showLongPressCling()
138 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) { in showLongPressCling()
141 content.setBackground(bg); in showLongPressCling()
152 content.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { in showLongPressCling()
156 content.getViewTreeObserver().removeOnGlobalLayoutListener(this); in showLongPressCling()
159 if (TAG_CROP_TOP_AND_SIDES.equals(content.getTag())) { in showLongPressCling()
160 content.setTranslationY(-content.getMeasuredHeight()); in showLongPressCling()
161 anim = LauncherAnimUtils.ofFloat(content, "translationY", 0); in showLongPressCling()
163 content.setScaleX(0); in showLongPressCling()
164 content.setScaleY(0); in showLongPressCling()
167 anim = LauncherAnimUtils.ofPropertyValuesHolder(content, scaleX, scaleY); in showLongPressCling()