我想從佈局到佈局的動畫。我想這個代碼,並保存在一個方法即不帶我去另一個佈局startAnimation沒有點擊按鈕
在這裏,我沒有得到執行是我的代碼
private void showNextScreen() {
Animation animation = AnimationUtils.loadAnimation(context,
R.anim.push_left_in);
animation.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationRepeat(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
startActivity(new Intent(context, MainLoginSignUpActivity.class));
finish();
overridePendingTransition(R.anim.push_left_in,
R.anim.push_left_out);
}
});// What to add here "startAnimation(animation);" --> But this shows error how to add it
}
在此之前我是從這個代碼
調用此方法context = this;
new CountDownTimer(3000, 1000) {
@Override
public void onFinish() {
showNextScreen();
}
@Override
public void onTick(long millisUntilFinished) {
}
}.start();
請幫忙解決這個問題。在此先感謝
你不要開始你的動畫... – njzk2
@ njzk2如何啓動動畫...我用這種方法試了startAnimation(動畫);但它顯示錯誤 – sarabu