Genie Effect Animation in Android

前端 未结 3 425
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 15:01

I have requirement of implementing Genie Effect animation shown below.

\"enter

3条回答
  •  庸人自扰
    2020-12-07 16:00

    I tried to make animation like Genie Effect. But its not as perfect as your image show, but It will help you during your research.

    Example Video of demo.

    Create anim folder in res. copy falling.xml

    falling.xml

    
    
    
        
    
        
    
    
    

    Use following java code to apply animaiton on button click.

    final Animation animationFalling = AnimationUtils
                            .loadAnimation(GenieEffectActivity.this, R.anim.falling);
                    imgview.startAnimation(animationFalling);
    

    Hope it helps you.

提交回复
热议问题