フラグメントのアニメーションに関するサンプルをいろいろ試してみたのですが、何も起こらないので、DialogFragment は「適切な」フラグメントではありませんか? それとも、ここで何か不足していますか?
FragmentTransaction ft = getFragmentManager().beginTransaction();
InfoDialogFragment newFragment = InfoDialogFragment.newInstance();
newFragment.setAsset(mainShow, c,backgroundDrawable);
ft.setCustomAnimations(R.anim.grow_in, R.anim.fadeout);
ft.add(newFragment, "dialog");
ft.commit();
...
public class InfoDialogFragment extends DialogFragment {