public class SummonsFragment extends Fragment {
String url = "https://ekanisa.com/content/1.mp4";
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_summons, container, false);
MediaController mc = new MediaController(getActivity());
VideoView view = (VideoView)rootView.findViewById(R.id.sermons_video);
view.setVideoURI(Uri.parse(url));
view.setMediaController(mc);
view.start();
return rootView;
}
}