我知道这个问题以前被问过很多次,但我永远无法完全理解,因为其他代码比我的要复杂得多或不同。所以就像问题所说的......如何自动启动动画而不是点击......我把代码留在下面......在此先感谢......!
final Animation a = AnimationUtils.loadAnimation(this, R.animator.animation);
a.reset();
final ImageView rImage = (ImageView) findViewById(R.id.title);
RelativeLayout layout = (RelativeLayout) findViewById(R.id.root);
layout.setOnClickListener(new OnClickListener() {
@Override public void onClick(View v) {
rImage.startAnimation(a);
func(); //A call to the function.
}
});