热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

Android自定义view实现仿抖音点赞效果

这篇文章主要介绍了Android自定义view实现仿抖音点赞效果,代码简单易懂非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下

前言

学习自定义view,想找点东西耍一下,刚好看到抖音的点赞效果不错,尝试一下。

抖音效果:

话不多说,先上代码:

public class Love extends RelativeLayout {
  private Context mContext;
  float[] num = {-30, -20, 0, 20, 30};//随机心形图片角度
  public Love(Context context) {
    super(context);
    initView(context);
  }
  public Love(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);
    initView(context);
  }
  public Love(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    initView(context);
  }
  private void initView(Context context) {
    mCOntext= context;
  }
  @Override
  protected void dispatchDraw(Canvas canvas) {
    super.dispatchDraw(canvas);
    ImageView imageView = new ImageView(mContext);
    LayoutParams params = new LayoutParams(100, 100);
    params.leftMargin = getWidth() - 200;
    params.topMargin = getHeight() / 2 - 300;
    imageView.setImageDrawable(getResources().getDrawable(R.drawable.heart_red));
    imageView.setLayoutParams(params);
    addView(imageView);
    imageView.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        Toast.makeText(mContext, "这里是点击爱心的动画,待展示", Toast.LENGTH_SHORT).show();
      }
    });
  }
  @Override
  public boolean onTouchEvent(MotionEvent event) {
    final ImageView imageView = new ImageView(mContext);
    LayoutParams params = new LayoutParams(300, 300);
    params.leftMargin = (int) event.getX() - 150;
    params.topMargin = (int) event.getY() - 300;
    imageView.setImageDrawable(getResources().getDrawable(R.drawable.heart_red));
    imageView.setLayoutParams(params);
    addView(imageView);
    AnimatorSet animatorSet = new AnimatorSet();
    animatorSet.play(scale(imageView, "scaleX", 2f, 0.9f, 100, 0))
        .with(scale(imageView, "scaleY", 2f, 0.9f, 100, 0))
        .with(rotation(imageView, 0, 0, num[new Random().nextInt(4)]))
        .with(alpha(imageView, 0, 1, 100, 0))
        .with(scale(imageView, "scaleX", 0.9f, 1, 50, 150))
        .with(scale(imageView, "scaleY", 0.9f, 1, 50, 150))
        .with(translationY(imageView, 0, -600, 800, 400))
        .with(alpha(imageView, 1, 0, 300, 400))
        .with(scale(imageView, "scaleX", 1, 3f, 700, 400))
        .with(scale(imageView, "scaleY", 1, 3f, 700, 400));
    animatorSet.start();
    animatorSet.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        removeViewInLayout(imageView);
      }
    });
    return super.onTouchEvent(event);
  }
  public static ObjectAnimator scale(View view, String propertyName, float from, float to, long time, long delayTime) {
    ObjectAnimator translation = ObjectAnimator.ofFloat(view
        , propertyName
        , from, to);
    translation.setInterpolator(new LinearInterpolator());
    translation.setStartDelay(delayTime);
    translation.setDuration(time);
    return translation;
  }
  public static ObjectAnimator translationX(View view, float from, float to, long time, long delayTime) {
    ObjectAnimator translation = ObjectAnimator.ofFloat(view
        , "translationX"
        , from, to);
    translation.setInterpolator(new LinearInterpolator());
    translation.setStartDelay(delayTime);
    translation.setDuration(time);
    return translation;
  }
  public static ObjectAnimator translationY(View view, float from, float to, long time, long delayTime) {
    ObjectAnimator translation = ObjectAnimator.ofFloat(view
        , "translationY"
        , from, to);
    translation.setInterpolator(new LinearInterpolator());
    translation.setStartDelay(delayTime);
    translation.setDuration(time);
    return translation;
  }
  public static ObjectAnimator alpha(View view, float from, float to, long time, long delayTime) {
    ObjectAnimator translation = ObjectAnimator.ofFloat(view
        , "alpha"
        , from, to);
    translation.setInterpolator(new LinearInterpolator());
    translation.setStartDelay(delayTime);
    translation.setDuration(time);
    return translation;
  }
  public static ObjectAnimator rotation(View view, long time, long delayTime, float... values) {
    ObjectAnimator rotation = ObjectAnimator.ofFloat(view, "rotation", values);
    rotation.setDuration(time);
    rotation.setStartDelay(delayTime);
    rotation.setInterpolator(new TimeInterpolator() {
      @Override
      public float getInterpolation(float input) {
        return input;
      }
    });
    return rotation;
  }
  }

实现思路

在点击时触发将心形的图片add到整个view中,然后在执行动画。主要的处理逻辑都在onTouchEvent()事件中,下面我们来详细讲解一下思路和代码:

@Override
  public boolean onTouchEvent(MotionEvent event) {
    final ImageView imageView = new ImageView(mContext);
    LayoutParams params = new LayoutParams(300, 300);
    params.leftMargin = (int) event.getX() - 150;
    params.topMargin = (int) event.getY() - 300;
    imageView.setImageDrawable(getResources().getDrawable(R.drawable.heart_red));
    imageView.setLayoutParams(params);
    addView(imageView);
    AnimatorSet animatorSet = new AnimatorSet();
    animatorSet.play(scale(imageView, "scaleX", 2f, 0.9f, 100, 0))
        .with(scale(imageView, "scaleY", 2f, 0.9f, 100, 0))
        .with(rotation(imageView, 0, 0, num[new Random().nextInt(4)]))
        .with(alpha(imageView, 0, 1, 100, 0))
        .with(scale(imageView, "scaleX", 0.9f, 1, 50, 150))
        .with(scale(imageView, "scaleY", 0.9f, 1, 50, 150))
        .with(translationY(imageView, 0, -600, 800, 400))
        .with(alpha(imageView, 1, 0, 300, 400))
        .with(scale(imageView, "scaleX", 1, 3f, 700, 400))
        .with(scale(imageView, "scaleY", 1, 3f, 700, 400));
    animatorSet.start();
    animatorSet.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        removeViewInLayout(imageView);
      }
    });
    return super.onTouchEvent(event);
  }

•首先,我们需要在触摸事件中做监听,当有触摸时,创建一个展示心形图片的ImageView。

final ImageView imageView = new ImageView(mContext);
  imageView.setImageDrawable(getResources().getDrawable(R.drawable.heart_red));//设置红色心形图片

•设置图片展示的位置,是需要在手指触摸的位置上方,即触摸点是心形的下方角的位置。所以我们需要将ImageView设置到手指的位置

 LayoutParams params = new LayoutParams(300, 300);
 params.leftMargin = (int) event.getX() - 150;
 params.topMargin = (int) event.getY() - 300;
 imageView.setLayoutParams(params);

•给imageView add到父view中。

addView(imageView);

•设置imageView动画

 AnimatorSet animatorSet = new AnimatorSet();
 animatorSet.play(scale(imageView, "scaleX", 2f, 0.9f, 100, 0))//缩放动画,X轴2倍缩小至0.9倍
        .with(scale(imageView, "scaleY", 2f, 0.9f, 100, 0))//缩放动画,Y轴2倍缩小至0.9倍
        .with(rotation(imageView, 0, 0, num[new Random().nextInt(4)]))//旋转动画,随机旋转角度num={-30.-20,0,20,30}
        .with(alpha(imageView, 0, 1, 100, 0))//渐变透明度动画,透明度从0-1.
        .with(scale(imageView, "scaleX", 0.9f, 1, 50, 150))//缩放动画,X轴0.9倍缩小至1倍
        .with(scale(imageView, "scaleY", 0.9f, 1, 50, 150))//缩放动画,Y轴0.9倍缩小至1倍
        .with(translationY(imageView, 0, -600, 800, 400))//平移动画,Y轴从0向上移动600单位
        .with(alpha(imageView, 1, 0, 300, 400))//透明度动画,从1-0
        .with(scale(imageView, "scaleX", 1, 3f, 700, 400))//缩放动画,X轴1倍放大至3倍
        .with(scale(imageView, "scaleY", 1, 3f, 700, 400));//缩放动画,Y轴1倍放大至3倍
animatorSet.start();

•当然,我们不可能无限制的增加view,在view消失之后,需要手动的移除改ImageView。

animatorSet.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        removeViewInLayout(imageView);
      }
    });

效果如下:

总结

以上所述是小编给大家介绍的Android自定义view实现仿抖音点赞效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!


推荐阅读
  • Android json字符串转Map
    Androidjson字符串转Map,Go语言社区,Golang程序员人脉社 ... [详细]
  • 本文探讨了如何将简单工厂模式与策略模式结合使用,以提高PHP程序设计中的灵活性和可维护性。通过这种方式,客户端代码无需直接实例化具体的算法类,而是通过工厂方法根据输入参数选择合适的策略。 ... [详细]
  • 本文探讨了在一个UIViewController中同时存在两个或更多tableView时,若它们的初始Y坐标相同,则可能出现布局异常的问题,并深入解析了automaticallyAdjustsScrollViewInsets属性的作用及其设置方法。 ... [详细]
  • A题简单判断#includeusingnamespacestd;typedeflonglongll;intt;intmain(){cint;whil ... [详细]
  • Flutter 高德地图插件使用指南
    本文档详细介绍了如何在Flutter项目中集成和使用高德地图插件,包括安装、配置及基本使用方法。 ... [详细]
  • 本文章介绍了如何将阿拉伯数字形式的金额转换为中国传统的大写形式,适用于财务报告和正式文件中的金额表示。 ... [详细]
  • 本文探讨了C#中所有内置数据类型如何通过默认构造函数初始化,并提供了一个示例方法来展示这些类型的默认值。 ... [详细]
  • 本文介绍了一个基于 div 标签设计的宿舍管理系统登录页面,包括用户身份选择、记住我功能以及错误信息提示。 ... [详细]
  • 本文详细介绍了如何在Android游戏中实现360°平滑触屏摇杆,包括摇杆的基本设计原理和具体实现步骤。 ... [详细]
  • 本文将详细介绍如何使用ViewPager实现多页面滑动切换,并探讨如何去掉其默认的左右切换动画效果。ViewPager是Android开发中常用的组件之一,用于实现屏幕间的内容切换。 ... [详细]
  • 随着科技的快速发展,Web前端设计也在不断创新,出现了多种新颖的布局技术。本文将重点探讨两种常见的布局方法——圣杯布局与负边距布局,旨在帮助开发者更好地掌握页面布局技巧。 ... [详细]
  • 探讨并解决在Android设备上遇到的'Error type 3: Activity class {} does not exist'错误,提供可能的原因及解决方案。 ... [详细]
  • JavaScript 面向对象编程中的继承机制
    本文详细介绍了JavaScript中实现类继承的几种常见方法,包括通过扩展Object的prototype、使用原型链以及利用call、apply和bind等技术手段。每种方法都有其特点和适用场景。 ... [详细]
  • WorldWind源代码解析:瓦片调度机制详解
    本文深入探讨了WorldWind项目中的关键组件——瓦片调度策略。通过源代码分析,我们将了解摄像头移动时如何动态调整瓦片的加载与卸载,确保地图渲染的高效与流畅。 ... [详细]
  • 本文将探讨iOS开发过程中需要掌握的三种关键编程语言——C、Objective-C和Swift,并深入解析面向过程与面向对象编程的概念,同时对比iOS与Android两大移动平台的特点。 ... [详细]
author-avatar
mobiledu2502886833
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有