Me started an activity like this
Intent mainIntent = new Intent(v.getContext(), Second.class); startActivity(mainIntent); overridePendingTransition(andro
You can prevent the default animation by setting flag FLAG_ACTIVITY_NO_ANIMATION like this
FLAG_ACTIVITY_NO_ANIMATION
mainIntent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);