“链接到超类”意味着什么?

时间:2013-08-06 23:07:14

标签: android fragment commonsware-cwac

我正在使用CommonsWare的Android CWAC-Camera Library并试图将自己的UI用于相机片段。如果这是一个愚蠢的问题,请原谅我。我特意遵循README文件这一部分:

“您可以继承CameraFragment并覆盖onCreateView()。链接到超类以获取CameraFragment自己的UI,然后使用其他小部件将其包装在您自己的容器中,并从onCreateView()返回组合的UI。” p>

是否有人使用此功能并提供示例?谢谢!

1 个答案:

答案 0 :(得分:4)

他们的意思是这样的:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
  View camera = super.onCreateView(inflater, container, savedInstanceState);

  // wrap camera in some other container that you inflate or instantiate

  return yourView;
}