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?
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?