Simple tween animation example

后端 未结 4 1514
长情又很酷
长情又很酷 2020-12-24 02:48

I\'m trying to implement the \"hyperspace\" tween animation described at http://developer.android.com/guide/topics/resources/animation-resource.html (\"Animation Resources\"

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-24 03:40

    Your imageview has to have a source defined in either the xml or your activity.

    xml:

    
    
    

    activity:

    ImageView image = (ImageView) findViewById(R.id.ImageView01);
    image.setImageResource(R.drawable.some_image);
    

提交回复
热议问题