服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android仿微信表情雨下落效果的实现方法

android仿微信表情雨下落效果的实现方法

2022-08-01 11:58程序猿tx Android

这篇文章主要给大家介绍了关于android仿微信表情雨下落效果的实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

前言

众所周知,微信聊天中我们输入一些关键词会有表情雨下落,比如输入「生日快乐」「么么哒」会有相应的蛋糕、亲吻的表情雨下落,今天就来完成这个表情雨下落的效果。下面话不多说了,来一起看看详细的介绍吧

效果图

先来看下效果,真·狗头雨·落!

android仿微信表情雨下落效果的实现方法

实现代码

确认表情的模型,定义属性

?
1
2
3
4
5
6
7
8
9
10
11
12
13
public class ItemEmoje {
 //坐标
 public int x;
 public int y;
 // 横向偏移
 public int offsetX;
 //纵向偏移
 public int offsetY;
 //缩放
 public float scale;
 //图片资源
 public Bitmap bitmap;
}

自定义RainView 表情下落视图,初始化变量。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public class RainView extends View {
 private Paint paint;
 //图片处理
 private Matrix matrix;
 private Random random;
 //判断是否运行的,默认没有
 private boolean isRun;
 //表情包集合
 private List<ItemEmoje> bitmapList;
 //表情图片
 private int imgResId = R.mipmap.dog;
 
 public RainView(Context context) {
 this(context, null);
 }
 
 public RainView(Context context, @Nullable AttributeSet attrs) {
 this(context, attrs, 0);
 }
 
 public RainView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 init();
 }
 
 private void init() {
 paint = new Paint();
 paint.setAntiAlias(true);
 paint.setFilterBitmap(true);
 paint.setDither(true);
 matrix = new Matrix();
 random = new Random();
 bitmapList = new ArrayList<>();
 }
}

初始化表情雨数据,确认每个表情的起始位置,下落过程中横向、纵向的偏移,以及缩放大小。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
private void initData() {
 for (int i = 0; i < 20; i++) {
 ItemEmoje itemEmoje = new ItemEmoje();
 itemEmoje.bitmap = BitmapFactory.decodeResource(getResources(), imgResId);
 //起始横坐标在[100,getWidth()-100) 之间
 itemEmoje.x = random.nextInt(getWidth() - 200) + 100;
 //起始纵坐标在(-getHeight(),0] 之间,即一开始位于屏幕上方以外
 itemEmoje.y = -random.nextInt(getHeight());
 //横向偏移[-2,2) ,即左右摇摆区间
 itemEmoje.offsetX = random.nextInt(4) - 2;
 //纵向固定下落12
 itemEmoje.offsetY = 12;
 //缩放比例[0.8,1.2) 之间
 itemEmoje.scale = (float) (random.nextInt(40) + 80) / 100f;
 bitmapList.add(itemEmoje);
 }
}

下落过程通过 onDraw进行绘制,不断的计算横纵坐标,达到下落效果。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@Override
protected void onDraw(Canvas canvas) {
 super.onDraw(canvas);
 if (isRun) {
 //用于判断表情下落结束,结束即不再进行重绘
 boolean isInScreen = false;
 for (int i = 0; i < bitmapList.size(); i++) {
  matrix.reset();
  //缩放
  matrix.setScale(bitmapList.get(i).scale, bitmapList.get(i).scale);
  //下落过程坐标
  bitmapList.get(i).x = bitmapList.get(i).x + bitmapList.get(i).offsetX;
  bitmapList.get(i).y = bitmapList.get(i).y + bitmapList.get(i).offsetY;
  if (bitmapList.get(i).y <= getHeight()) {//当表情仍在视图内,则继续重绘
  isInScreen = true;
  }
  //位移
  matrix.postTranslate(bitmapList.get(i).x, bitmapList.get(i).y);
  canvas.drawBitmap(bitmapList.get(i).bitmap, matrix, paint);
 }
 if (isInScreen) {
  postInvalidate();
 }else {
  release();
 }
 }
}
 
/**
 *释放资源
 */
private void release(){
 if(bitmapList != null && bitmapList.size()>0){
 for(ItemEmoje itemEmoje : bitmapList){
  if(!itemEmoje.bitmap.isRecycled()){
  itemEmoje.bitmap.recycle();
  }
 }
 bitmapList.clear();
 }
}

提供start() 方法触发。

?
1
2
3
4
5
public void start(boolean isRun) {
 this.isRun = isRun;
 initData();
 postInvalidate();
}

布局文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
 
 <com.rain.RainView
 android:id="@+id/testView"
 android:layout_width="match_parent"
 android:layout_height="match_parent" />
 
 <Button
 android:id="@+id/btn_dog"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:text="真·狗头雨·落!" />
 
 <Button
 android:id="@+id/btn_cake"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:layout_marginLeft="10dp"
 android:layout_toRightOf="@+id/btn_dog"
 android:text="蛋糕雨" />
 
</RelativeLayout>

activity 点击事件触发

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
btnCake.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 //蛋糕图片
 rainView.setImgResId(R.mipmap.cake);
 rainView.start(true);
 }
});
btnDog.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 //狗头图片
 rainView.setImgResId(R.mipmap.dog);
 rainView.start(true);
 }
});

github地址:https://github.com/taixiang/rain_emoji (本地下载)

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:https://www.jianshu.com/p/85be65060b89

延伸 · 阅读

精彩推荐