Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_main, container, false);
    brightcoveVideoView = (BaseVideoView) view.findViewById(R.id.brightcove_video_view);
    super.onCreateView(inflater, container, savedInstanceState);
    return view;
}

There are additional abstact abstract methods to implement to provide the fragment with access tokens needed by the IRIS.TV API. These include:

...