List of utility methods to do Animation Setup
void | setActivityAnimation(Activity activity, int in, int out) set Activity Animation try { Method method = Activity.class.getMethod( "overridePendingTransition", new Class[] { int.class, int.class }); method.invoke(activity, in, out); } catch (Exception e) { |