amzn / exoplayer-amazon-port

Official port of ExoPlayer for Amazon devices
Apache License 2.0
173 stars 80 forks source link

How to show the Usercontrollers at Bottom of the Screen? #110

Open vijaykuppli opened 3 years ago

vijaykuppli commented 3 years ago

Apologies if i am asking wrong question here.

I am using this code in my application to play the Video. I have used below code to play Video <com.google.android.exoplayer2.ui.StyledPlayerView android:id="@+id/exo_player_view" android:layout_width="match_parent" android:layout_height="match_parent" app:fastforward_increment="10000" app:rewind_increment="10000" app:controller_layout_id="@layout/exo_styled_player_control_view" app:show_shuffle_button="true" app:show_subtitle_button="true" app:surface_type="surface_view" />

When I integrate the code the Usercontrollers are showing in center of the screen. I wanna bring the controllers on bottom of the screen.

Could you please let me know how I can display like that?