textview click 시 잠시 color 변경 private void upDownClicked(View ta) { AnimatorSet animatorSet = new AnimatorSet(); ObjectAnimator scaleX = ObjectAnimator.ofFloat(ta, "scaleX", 1f, 1.1f, 1f); ObjectAnimator scaleY = ObjectAnimator.ofFloat(ta, "scaleY", 1f, 1.1f, 1f); ObjectAnimator colorChange = ObjectAnimator.ofInt(ta, "backgroundColor", ContextCompat.getColor(mContext, R.col..