@Override
 public void onResume() {
   super.onResume();
   if (Utils.isConnectedToInternet()) {
     mDetailedPresenterImp.fetchTrailers(mId);
     mDetailedPresenterImp.fetchReviews(mId);
   } else {
     if (!Utils.isLandscape() && !Utils.isTablet()) {
       Toast.makeText(getActivity(), "INTERNET LOST", Toast.LENGTH_LONG).show();
     }
   }
 }