不太清楚如何解释它,所以显示一些代码肯定会帮助我。
Intent i = new Intent(Main.this, screen1.class);
i.putExtra("uid", username);
i.putExtra("pwd", password);
startActivity(i);
/** Fading Transition Effect */
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
我想在意图传递一些字符串时启动另一个活动。我的问题是overridePendingTransition不起作用我相信是因为意图。
我知道我什么时候这样做:
startActivity(new Intent(Main.this,
screen1.class));
Main.this.finish();
/** Fading Transition Effect */
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
overridePendingTransition工作正常。
有人可以帮忙吗?
答案 0 :(得分:3)
尝试
Intent i = new Intent(Main.this, screen1.class);
i.putExtra("uid", username);
i.putExtra("pwd", password);
startActivity(i);
/** Fading Transition Effect */
Main.this.overridePendingTransition(R.anim.fadein, R.anim.fadeout);