tcking / GiraffePlayer2

out of the box android video player(support lazy load, ListView/RecyclerView and hight performance)
Apache License 2.0
377 stars 110 forks source link

regarding the player controls #118

Open dolphylimitinf opened 6 years ago

dolphylimitinf commented 6 years ago

Hi, I am using the below code and I want to hide the controls like setting button and other gesture controls. For XML I used - <tcking.github.com.giraffeplayer2.VideoView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/gp_video_view" android:soundEffectsEnabled="true" android:keepScreenOn="true" /> gp_video_view = (VideoView)findViewById(R.id.gp_video_view);

    gp_video_view.setVideoPath("http://techslides.com/demos/sample-videos/small.mp4");

    gp_video_view.getPlayer().setPlayerListener(new PlayerListener() {

    overridden methods }

How do I hide the seek bar and other controls?