protected void onCreate(Bundle savedInstanceState) {
// TODO 自动生成的方法存根
super.onCreate(savedInstanceState);
setContentView(R.layout.layout);
img=(ImageView)findViewById(R.id.img);


Animation anim=AnimationUtils.loadAnimation(this, R.anim.scale);
anim.setFillAfter(true);

img.setAnimation(anim);

}

相关文章:

猜你喜欢
  • 2021-11-24
  • 2021-12-31
  • 2021-12-11
相关资源
相似解决方案