我正在做一个布局,类似于 Google play 的。我正在使用需要片段的 ViewPager。我现在有点困惑,因为有些网站说片段需要一个空的构造函数,但 developer.android.com 上的示例不包含构造函数。那里的代码是这样的:
public static class DemoObjectFragment extends Fragment {
public static final String ARG_OBJECT = "object";
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
// The last two arguments ensure LayoutParams are inflated
// properly.
View rootView = inflater.inflate(
R.layout.fragment_collection_object, container, false);
Bundle args = getArguments();
((TextView) rootView.findViewById(android.R.id.text1)).setText(
Integer.toString(args.getInt(ARG_OBJECT)));
return rootView;
}
}
那么是否需要在片段中包含构造函数或者我可以省略构造函数?