这段代码在我的HTC Disire和Android 2.3.3设备上运行良好,但在我的android 4.0手机——华为C8812上不行?
public void changeNextActivity(Class<?> c){
Intent intent = new Intent(this,c);
this.startActivity(intent);
overridePendingTransition(R.anim.animation_right_in,R.anim.animation_left_out);
}