私はアニメーション化したいレイアウトがたくさんありますが、その間に休止してスレッドを使用せずに行うことはできますか?スレッドを使用しないアニメーション間の休止
final LinearLayout imagineL = (LinearLayout) findViewById(R.id.applayer);
final LinearLayout btneyeviewL = (LinearLayout)findViewById(R.id.eyeviewlay);
final LinearLayout btnonlineL = (LinearLayout) findViewById(R.id.onlinelay);
final Animation a = AnimationUtils.loadAnimation(this, R.anim.layanim);
a.reset();
imagineL.clearAnimation();
imagineL.startAnimation(a);
//pause for 1sec here
a.reset();
btneyeviewL.clearAnimation();
btneyeviewL.startAnimation(a);
//pause for 1sec here
a.reset();
btnonlineL.clearAnimation();
btnonlineL.startAnimation(a);
:ちょうどこのようなポーズでアニメーター(pause.xml)を作成
を簡単なアニメーションのためには、タイマーを挿入するのではなく、2つの問題を占めるのが簡単です... –