From 967cdb018142c388e493213f0b97f40ac669578e Mon Sep 17 00:00:00 2001 From: Yorke Lee Date: Tue, 14 Oct 2014 18:01:52 -0700 Subject: Remove dead code The TileInteractionTeaserView is no longer displayed in the UI. Change-Id: Ieaf24cdf2ecd5971a22e58e34c49a4481b7d6320 --- src/com/android/dialer/list/SpeedDialFragment.java | 5 - .../dialer/list/TileInteractionTeaserView.java | 153 --------------------- 2 files changed, 158 deletions(-) delete mode 100644 src/com/android/dialer/list/TileInteractionTeaserView.java (limited to 'src') diff --git a/src/com/android/dialer/list/SpeedDialFragment.java b/src/com/android/dialer/list/SpeedDialFragment.java index c02c3d7f9..c12acb09d 100644 --- a/src/com/android/dialer/list/SpeedDialFragment.java +++ b/src/com/android/dialer/list/SpeedDialFragment.java @@ -150,8 +150,6 @@ public class SpeedDialFragment extends AnalyticsFragment implements OnItemClickL private View mContactTileFrame; - private TileInteractionTeaserView mTileInteractionTeaserView; - private final HashMap mItemIdTopMap = new HashMap(); private final HashMap mItemIdLeftMap = new HashMap(); @@ -217,9 +215,6 @@ public class SpeedDialFragment extends AnalyticsFragment implements OnItemClickL mContactTileFrame = mParentView.findViewById(R.id.contact_tile_frame); - mTileInteractionTeaserView = (TileInteractionTeaserView) inflater.inflate( - R.layout.tile_interactions_teaser_view, mListView, false); - final LayoutAnimationController controller = new LayoutAnimationController( AnimationUtils.loadAnimation(getActivity(), android.R.anim.fade_in)); controller.setDelay(0); diff --git a/src/com/android/dialer/list/TileInteractionTeaserView.java b/src/com/android/dialer/list/TileInteractionTeaserView.java deleted file mode 100644 index fd5ed3425..000000000 --- a/src/com/android/dialer/list/TileInteractionTeaserView.java +++ /dev/null @@ -1,153 +0,0 @@ -package com.android.dialer.list; - -import android.animation.Animator; - -import android.animation.ValueAnimator; -import android.content.Context; -import android.content.SharedPreferences; -import android.content.res.Resources; -import android.util.AttributeSet; -import android.util.Log; -import android.view.View; -import android.view.animation.DecelerateInterpolator; -import android.widget.FrameLayout; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.TextView; - -import com.android.dialer.DialtactsActivity; -import com.android.dialer.R; - -/** - * A teaser to introduce people to the contact photo check boxes - */ -public class TileInteractionTeaserView extends FrameLayout { - private static int sShrinkAnimationDuration; - - private static final String KEY_TILE_INTERACTION_TEASER_SHOWN = - "key_tile_interaction_teaser_shown"; - - private boolean mNeedLayout; - private int mTextTop; - private int mAnimatedHeight = -1; - - private ShortcutCardsAdapter mAdapter; - - public TileInteractionTeaserView(final Context context) { - this(context, null); - } - - public TileInteractionTeaserView(final Context context, final AttributeSet attrs) { - super(context, attrs); - final Resources resources = context.getResources(); - - mNeedLayout = true; - sShrinkAnimationDuration = resources.getInteger(R.integer.escape_animation_duration); - } - - @Override - protected void onFinishInflate() { - findViewById(R.id.dismiss_button).setOnClickListener(new OnClickListener() { - @Override - public void onClick(View v) { - startDestroyAnimation(); - } - }); - } - - @Override - protected void onLayout(boolean changed, int left, int top, int right, int bottom) { - super.onLayout(changed, left, top, right, bottom); - - final TextView text = (TextView) findViewById(R.id.text); - final ImageView arrow = (ImageView) findViewById(R.id.arrow); - - // We post to avoid calling layout within layout - arrow.post(new Runnable() { - @Override - public void run() { - - // The text top is changed when we move the arrow, so we need to - // do multiple passes - int textTop = text.getTop(); - if (mNeedLayout || textTop != mTextTop) { - mNeedLayout = false; - mTextTop = textTop; - - final int lineHeight = text.getLineHeight(); - final LinearLayout.LayoutParams arrowParams = (LinearLayout.LayoutParams) arrow - .getLayoutParams(); - arrowParams.topMargin = mTextTop + lineHeight / 2; - arrow.setLayoutParams(arrowParams); - } - arrow.setVisibility(View.VISIBLE); - } - }); - } - - public boolean getShouldDisplayInList() { - final SharedPreferences prefs = getContext().getSharedPreferences( - DialtactsActivity.SHARED_PREFS_NAME, Context.MODE_PRIVATE); - return prefs.getBoolean(KEY_TILE_INTERACTION_TEASER_SHOWN, true); - } - - public void setAdapter(ShortcutCardsAdapter adapter) { - mAdapter = adapter; - } - - private void startDestroyAnimation() { - final int start = getHeight(); - final int end = 0; - mAnimatedHeight = start; - Log.v("Interaction", "Start from" + start); - - ValueAnimator heightAnimator = ValueAnimator.ofInt(start, end); - heightAnimator.setDuration(sShrinkAnimationDuration); - heightAnimator.setInterpolator(new DecelerateInterpolator(2.0f)); - heightAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { - public void onAnimationUpdate(ValueAnimator animation) { - mAnimatedHeight = (Integer) animation.getAnimatedValue(); - requestLayout(); - } - }); - heightAnimator.addListener(new Animator.AnimatorListener() { - @Override - public void onAnimationStart(Animator animator) { - } - - @Override - public void onAnimationEnd(Animator animator) { - setVisibility(GONE); - setDismissed(); - if (mAdapter != null) { - mAdapter.notifyDataSetChanged(); - } - } - - @Override - public void onAnimationCancel(Animator animator) { - } - - @Override - public void onAnimationRepeat(Animator animator) { - } - }); - - heightAnimator.start(); - } - - private void setDismissed() { - final SharedPreferences prefs = getContext().getSharedPreferences( - DialtactsActivity.SHARED_PREFS_NAME, Context.MODE_PRIVATE); - prefs.edit().putBoolean(KEY_TILE_INTERACTION_TEASER_SHOWN, false).apply(); - } - - @Override - protected void onMeasure(final int widthMeasureSpec, final int heightMeasureSpec) { - if (mAnimatedHeight == -1) { - super.onMeasure(widthMeasureSpec, heightMeasureSpec); - } else { - setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mAnimatedHeight); - } - } -} -- cgit v1.2.3