- 1.首先创建一个
xml
在drawable
目录下
transition_image
1 | <?xml version="1.0" encoding="utf-8"?> |
- 2.在xml中引用
1 | android:drawable="@drawable/transition_image" |
- 3.在
Activity
中使用
1 | ImageView mImageView = (ImageView) findViewById(R.id.iv); |
另外一种写法实现多张图片效果
1 | TransitionDrawable transitionDrawable = new TransitionDrawable(new Drawable[]{getResources().getDrawable(R.drawable.first),getResources().getDrawable(R.drawable.two)}); |