查看DialogFragment的
documentation,可以看到静态newInstance方法来初始化一个新的警报对话框片段.我的问题是,为什么不使用构造函数这样做,像这样:
public MyAlertDialogFragment(int title) { Bundle args = new Bundle(); args.putInt("title",title); setArguments(args); }
这不完全一样吗?最好的方法是什么,为什么?