I have a DialogFragment and I set animation for enter/exit in the onActivityCreated method as below:
@Override
public void on
You can set an Up & Down animations for dialog fragment. In 'res/anim' add two files:
// Slide up animation
// Slide dowm animation
// Style
// Inside Dialog Fragment
@Override
public void onActivityCreated(Bundle arg0) {
super.onActivityCreated(arg0);
getDialog().getWindow()
.getAttributes().windowAnimations = R.style.DialogAnimation;
}