是否可以为DialogFragment设置动画?

时间:2011-05-25 19:11:58

标签: android android-3.0-honeycomb android-fragments

我尝试了各种关于片段动画的样本,但没有任何反应,所以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 {

1 个答案:

答案 0 :(得分:6)

Here是Google工程师就此主题所说的话。