private void InitView()
        {
            Toolbar toolbar = (Toolbar)FindViewById(Resource.Id.toolbar);

            detailPlayer = FindViewById <StandardGSYVideoPlayer>(Resource.Id.detail_player);
            root         = (CoordinatorLayout)FindViewById(Resource.Id.root_layout);

            SetSupportActionBar(toolbar);
            toolBarLayout       = (CollapsingToolbarLayout)FindViewById(Resource.Id.toolbar_layout);
            toolBarLayout.Title = "";//.setTitle(getTitle());

            fab = (FloatingActionButton)FindViewById(Resource.Id.fab);
            fab.SetOnClickListener(this);
            appBar = (AppBarLayout)FindViewById(Resource.Id.app_bar);
            appBar.AddOnOffsetChangedListener(appBarStateChangeListener);
        }
 public IAppBarStateChangeListener(OrientationUtils Utils, StandardGSYVideoPlayer player, Context ct)
 {
     _orientationUtils = Utils;
     _detailPlayer     = player;
     _context          = ct;
 }
 public IGSYSampleCallBack(OrientationUtils Utils, StandardGSYVideoPlayer player)
 {
     _orientationUtils = Utils;
     _detailPlayer     = player;
 }