こんにちは、ランナブルで開始を遅らせたいアニメーションがありますが、アニメーションがループする必要はありませんが、遅延させてから一度実行したいだけです。
ここに私のコードがあります
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_initialsetup);
handler = new Handler();
final Runnable r = new Runnable()
{
public void run()
{
animations();
handler.postDelayed(this, 1000);
}
};
handler.postDelayed(r, 1000);
}
public void animations(){
image = (ImageView)findViewById(R.id.su_shirts);
AnimationMovepos = AnimationUtils.loadAnimation(this, R.anim.shirt_anim);
image.startAnimation(AnimationMovepos);
}
}